first commit

This commit is contained in:
2026-02-24 14:03:16 -05:00
commit 75504d20cd
4 changed files with 51 additions and 0 deletions

14
hello/hello.nix Normal file
View File

@@ -0,0 +1,14 @@
{
stdenv,
fetchzip,
}:
stdenv.mkDerivation {
pname = "hello";
version = "2.12.1";
src = fetchzip {
url = "https://ftp.gnu.org/gnu/hello/hello-2.12.1.tar.gz";
sha256 = "sha256-1kJjhtlsAkpNB7f6tZEs+dbKd8z7KoNHyDHEJ0tmhnc=";
};
}