diff options
| author | seth <[email protected]> | 2023-09-24 14:23:53 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2023-09-24 14:23:53 -0400 |
| commit | 0f7848c8a6936bc80b043b2d2308ef0d85633b13 (patch) | |
| tree | 156b20e90efff507c86148045da402a05c066b17 /templates/basic/default.nix | |
| parent | a6c7b042849d519903bd7d54ecef470b192b1c8c (diff) | |
templates/basic: simplify a bit
Diffstat (limited to 'templates/basic/default.nix')
| -rw-r--r-- | templates/basic/default.nix | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/templates/basic/default.nix b/templates/basic/default.nix deleted file mode 100644 index 5d0e6a1..0000000 --- a/templates/basic/default.nix +++ /dev/null @@ -1,25 +0,0 @@ -{ - lib, - stdenv, - self, - version, - ... -}: -stdenv.mkDerivation { - pname = "hello"; - inherit version; - - src = self; - - installPhase = '' - echo "hi" > $out - ''; - - meta = with lib; { - description = ""; - homepage = ""; - license = licenses.mit; - maintainers = [maintainers.getchoo]; - platforms = platforms.linux; - }; -} |
