diff options
| author | Rose Hogenson <rosehogenson@posteo.net> | 2024-10-17 10:57:12 -0700 |
|---|---|---|
| committer | Rose Hogenson <rosehogenson@posteo.net> | 2024-10-17 10:57:12 -0700 |
| commit | ad71e55afa46b0bd2a19e31a6838d86dfcd3bd9a (patch) | |
| tree | c1f82b29da0129b9277831aaaf15d6e15dbf6f38 /default.nix | |
| parent | ff88b8a8c0da46edbc554982408d1be6a17e4c64 (diff) | |
| download | roseh.moe-ad71e55afa46b0bd2a19e31a6838d86dfcd3bd9a.tar.zst | |
Add a default.nix.
Diffstat (limited to 'default.nix')
| -rw-r--r-- | default.nix | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/default.nix b/default.nix new file mode 100644 index 0000000..8a3b091 --- /dev/null +++ b/default.nix @@ -0,0 +1,10 @@ +{ pkgs ? import <nixpkgs> {} }: + +pkgs.buildGoPackage { + pname = "roseh.moe"; + version = "1.0.0"; + + src = ./.; + + goPackagePath = "gitlab.com/rhogenson/roseh.moe"; +} |
