Initial commit

This commit is contained in:
Katherina Walshe-Grey 2024-06-23 16:18:10 +01:00 committed by GitHub
commit 001462e8c3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
14 changed files with 306 additions and 0 deletions

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