14 lines
221 B
Nix
14 lines
221 B
Nix
|
{ stdenv, gnumake }:
|
||
|
stdenv.mkDerivation {
|
||
|
name = "hello";
|
||
|
|
||
|
src = ./.;
|
||
|
nativeBuildInputs = [ gnumake ];
|
||
|
|
||
|
enableParallelBuilding = true;
|
||
|
|
||
|
installPhase = ''
|
||
|
install -D hello $out/bin/hello --mode 0755
|
||
|
'';
|
||
|
}
|