diff options
Diffstat (limited to 'templates/basic/default.nix')
| -rw-r--r-- | templates/basic/default.nix | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/templates/basic/default.nix b/templates/basic/default.nix new file mode 100644 index 0000000..5d0e6a1 --- /dev/null +++ b/templates/basic/default.nix @@ -0,0 +1,25 @@ +{ + 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; + }; +} |
