forked from auxolotl/templates
57769ca9ed
Co-authored-by: isabelroses <isabel@isabelroses.com>
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
|
|
'';
|
|
}
|