This commit is contained in:
Amy de Buitléir 2025-09-13 16:16:54 +01:00
parent 3e2a61c802
commit d4eb863b3c
2 changed files with 126 additions and 7 deletions

View file

@ -12,7 +12,7 @@
{
packages = rec {
hello = pkgs.stdenv.mkDerivation rec {
name = "hello-flake";
name = "hello-with-cow";
src = ./.;
@ -23,8 +23,8 @@
installPhase =
''
mkdir -p $out/bin
cp $src/hello-flake $out/bin/hello-flake
chmod +x $out/bin/hello-flake
cp $src/hello-with-cow $out/bin
chmod +x $out/bin/hello-with-cow
'';
};
default = hello;