6 lines
103 B
Nix
6 lines
103 B
Nix
|
with import <nixpkgs> {};
|
||
|
stdenv.mkDerivation {
|
||
|
name = "c-shell";
|
||
|
buildInputs = [ gcc gnumake ];
|
||
|
}
|