trivionomicon/templates/system-flake/pkgs/hello-world/default.nix

15 lines
212 B
Nix
Raw Normal View History

2025-01-26 22:38:38 +01:00
{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";
}