Initial commit

This commit is contained in:
Trolli Schmittlauch 2021-03-10 02:27:11 +01:00
commit 35ebdd5b7e
13 changed files with 287 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";
}