templates/bash/nixpkgs/package.nix
Kiana Sheibani afb4b62827
change basically everything
It's a good thing that I'm not collaborating with anyone on this
repository, because this is REALLY bad practice.
2025-11-23 22:43:24 -05:00

17 lines
202 B
Nix

{ stdenvNoCC
, bash
}:
stdenvNoCC.mkDerivation {
pname = "hello";
version = "0.1";
src = ./.;
buildInputs = [ bash ];
installPhase = ''
mkdir -p $out/bin
cp hello $out/bin
'';
}