Remove example package

This commit is contained in:
Katherina Walshe-Grey 2024-06-23 17:36:52 +01:00
parent 05005f4702
commit e1db10bcf3
2 changed files with 3 additions and 25 deletions

View file

@ -1,9 +0,0 @@
{ stdenv }:
stdenv.mkDerivation rec {
name = "example-package-${version}";
version = "1.0";
src = ./.;
buildPhase = "echo echo Hello World > example";
installPhase = "install -Dm755 example $out";
}