diff options
| author | seth <[email protected]> | 2023-08-24 07:49:07 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2023-08-24 07:49:07 -0400 |
| commit | fab63c5065d06e577dab7faec41a8365b80c48e4 (patch) | |
| tree | 6ebe19664758903f0c6d2df619496c405de612cd /templates/full/nix/packages/hello.nix | |
| parent | d266cbb1844959961e7aa12a9b979d8676d14e98 (diff) | |
templates/full: improve layout
Diffstat (limited to 'templates/full/nix/packages/hello.nix')
| -rw-r--r-- | templates/full/nix/packages/hello.nix | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/templates/full/nix/packages/hello.nix b/templates/full/nix/packages/hello.nix deleted file mode 100644 index 30cfc8d..0000000 --- a/templates/full/nix/packages/hello.nix +++ /dev/null @@ -1,29 +0,0 @@ -{ - lib, - stdenv, - version, - ... -}: let - inherit (lib) licenses maintainers platforms; -in - stdenv.mkDerivation rec { - pname = "hello"; - inherit version; - - src = builtins.path { - name = "${pname}-src"; - path = ./.; - }; - - installPhase = '' - echo "hi" > $out - ''; - - meta = { - description = ""; - homepage = ""; - license = licenses.mit; - maintainers = [maintainers.getchoo]; - platforms = platforms.linux; - }; - } |
