git-subtree-dir: trivionomicon git-subtree-mainline:98a32736d6
git-subtree-split:bf39923f9c
14 lines
212 B
Nix
14 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";
|
|
}
|