10 lines
178 B
Nix
10 lines
178 B
Nix
|
with import <nixpkgs> { };
|
||
|
stdenv.mkDerivation rec {
|
||
|
name = "env";
|
||
|
env = buildEnv { name = name; paths = buildInputs; };
|
||
|
buildInputs = with pkgs; [
|
||
|
bash
|
||
|
git
|
||
|
];
|
||
|
}
|