From 9b912d435520c1f0cc952c46a2c75100457cc245 Mon Sep 17 00:00:00 2001 From: seth Date: Sun, 24 Sep 2023 14:24:05 -0400 Subject: templates/final: use slightly better practices --- templates/full/nix/pkgs/hello.nix | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 templates/full/nix/pkgs/hello.nix (limited to 'templates/full/nix/pkgs/hello.nix') 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; - }; -} -- cgit v1.2.3