summaryrefslogtreecommitdiff
path: root/flake.nix
blob: cec4abbf3cbc0c5f37c0f0d87975f539c8df3831 (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 = "nixpkgs/nixos-unstable";

    fenix = {
      url = "github:nix-community/fenix";
      inputs.nixpkgs.follows = "nixpkgs";
    };
  };

  outputs = { self, nixpkgs, fenix }:
  let
    overlays = [ fenix.overlays.default ];

    getPkgsFor = (system: import nixpkgs {
      inherit system overlays;
    });

    forEachSystem = func: nixpkgs.lib.genAttrs [
      "x86_64-linux"
      "i686-linux"
      "aarch64-linux"

      "aarch64-darwin"
      "x86_64-darwin"
    ] (system: func (getPkgsFor system));

  in {
    devShells = forEachSystem (pkgs: {
      default = pkgs.callPackage ./shell.nix {};
    });
  };
}