blob: 8f5434c9c4214063071ad371a3970172de54d55f (
plain) (
tree)
|
|
{ pkgs ?
import <nixpkgs> { overlays = [ (import ./default.nix { inherit pkgs; }) ]; }
}:
with pkgs;
mkShell {
buildInputs =
map (name: xyz-euandreh."${name}") (builtins.attrNames xyz-euandreh);
}
|