Initial commit

This commit is contained in:
materus
2023-05-06 21:03:30 +02:00
committed by GitHub
commit 97fd90c347
14 changed files with 305 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
{ stdenv }:
stdenv.mkDerivation rec {
name = "example-package-${version}";
version = "1.0";
src = ./.;
buildPhase = "echo echo Hello World > example";
installPhase = "install -Dm755 example $out";
}