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