aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
blob: 52e1127d37a75ad8878cddfc1b6ec218daa90345 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
  inputs = {
    nixpkgs.url      = "github:nixos/nixpkgs";
    flake-utils.url  = "github:numtide/flake-utils";
    rust-overlay = {
      url = "github:oxalica/rust-overlay";
      inputs.nixpkgs.follows = "nixpkgs";
    };
  };

  outputs = { self, nixpkgs, rust-overlay, flake-utils, ... }:
    flake-utils.lib.eachDefaultSystem (system:
      let
        overlays = [ (import rust-overlay) ];
        pkgs = import nixpkgs {
          inherit system overlays;
        };
      in
      with pkgs;
      {
        devShell = mkShell {
          buildInputs = [
            rust-bin.stable."1.71.0".default
            cargo-watch
            lld
            openssl
            pkgconfig
            sqlite
          ];
        };
      }
    );
}