aboutsummaryrefslogtreecommitdiff
path: root/shell.nix
blob: 8f5434c9c4214063071ad371a3970172de54d55f (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
{ pkgs ?
  import <nixpkgs> { overlays = [ (import ./default.nix { inherit pkgs; }) ]; }
}:

with pkgs;
mkShell {
  buildInputs =
    map (name: xyz-euandreh."${name}") (builtins.attrNames xyz-euandreh);
}