diff options
| author | Franck Cuny <franck@fcuny.net> | 2025-11-15 12:11:43 -0800 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2025-11-15 12:11:43 -0800 |
| commit | de1bf48711ca27f3d6e57e46085df1f667d1bf31 (patch) | |
| tree | 89617f9e987390d07efbacb91e0172c9f5d511fa /nix/packages/goget.nix | |
| parent | ignore errors (diff) | |
| download | x-de1bf48711ca27f3d6e57e46085df1f667d1bf31.tar.gz | |
remove goget as a package and switch to fcuny-net instead
Diffstat (limited to 'nix/packages/goget.nix')
| -rw-r--r-- | nix/packages/goget.nix | 31 |
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"; - }; -} |
