diff options
Diffstat (limited to 'templates/full/nix/pkgs/hello.nix')
| -rw-r--r-- | templates/full/nix/pkgs/hello.nix | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/templates/full/nix/pkgs/hello.nix b/templates/full/nix/pkgs/hello.nix deleted file mode 100644 index 1e2ec12..0000000 --- a/templates/full/nix/pkgs/hello.nix +++ /dev/null @@ -1,25 +0,0 @@ -{ - lib, - stdenv, - self, - version, - ... -}: -stdenv.mkDerivation { - pname = "hello"; - inherit version; - - src = lib.cleanSource self; - - installPhase = '' - echo "hi" > $out - ''; - - meta = with lib; { - description = ""; - homepage = ""; - license = licenses.mit; - maintainers = [maintainers.getchoo]; - platforms = platforms.linux; - }; -} |
