aboutsummaryrefslogtreecommitdiff
path: root/nix/packages/goget.nix
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--nix/packages/goget.nix31
1 files changed, 0 insertions, 31 deletions
diff --git a/nix/packages/goget.nix b/nix/packages/goget.nix
deleted file mode 100644
index fe9e4e1..0000000
--- a/nix/packages/goget.nix
+++ /dev/null
@@ -1,31 +0,0 @@
-{
- lib,
- buildGoModule,
-}:
-
-buildGoModule rec {
- pname = "goget";
- version = "0.1.0"; # Consider deriving from git tags: version = builtins.substring 0 8 self.rev;
-
- src = ../..;
-
- vendorHash = "sha256-ylmCf+NJiNba0W1IhQMJVH+kwDDYU9gB6D90QAYnIyA=";
-
- subPackages = [ "cmd/goget" ];
-
- ldflags = [
- "-s"
- "-w"
- ];
-
- doCheck = false;
-
- meta = with lib; {
- description = "A Go tool for getting things"; # Update with actual description
- homepage = "https://github.com/yourusername/yourrepo"; # Update with your repo
- license = licenses.mit;
- maintainers = with maintainers; [ fcuny ];
- platforms = platforms.unix;
- mainProgram = "goget";
- };
-}