trivionomicon/templates/system-flake/pkgs/hello-world/default.nix
2025-01-26 15:42:00 -06:00

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";
}