summaryrefslogtreecommitdiff
path: root/flake.nix
blob: 5f0f1d6a08e03315b06c8e14b341ba836d028980 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
  inputs = {

    nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";

    gitignore = {
      url = "github:hercules-ci/gitignore.nix";
      inputs.nixpkgs.follows = "nixpkgs";
    };

  };

  outputs =
    { self
    , nixpkgs
    , gitignore
    }:
    let
      inherit (gitignore.lib) gitignoreSource;

      supportedSystems = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ];
      forAllSystems = nixpkgs.lib.genAttrs supportedSystems;
      nixpkgsFor = forAllSystems (system:
        import nixpkgs { inherit system; });

    in
    {

      devShell = forAllSystems (system:
        let
          pkgs = nixpkgsFor."${system}";
        in
        pkgs.mkShell {
          nativeBuildInputs = [
            pkgs.cargo-watch
            pkgs.bacon
            pkgs.cargo-insta
            pkgs.rust-analyzer
            pkgs.rustc
            pkgs.rustfmt
            pkgs.cargo
          ];
          RUST_LOG = "info";
          RUST_BACKTRACE = 1;
        });
    };
}