15 lines
212 B
Nix
15 lines
212 B
Nix
|
{stdenv, ...}:
|
||
|
stdenv.mkDerivation {
|
||
|
name = "hello-world";
|
||
|
version = "1.0.0";
|
||
|
|
||
|
src = ./.;
|
||
|
|
||
|
installPhase = ''
|
||
|
mkdir -p $out/bin
|
||
|
cp hello-world $out/bin
|
||
|
'';
|
||
|
|
||
|
meta.mainProgram = "hello-world";
|
||
|
}
|