depot/pkgs/tools/package-management/gx/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

25 lines
609 B
Nix

{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "gx";
version = "0.14.3";
src = fetchFromGitHub {
owner = "whyrusleeping";
repo = pname;
rev = "v${version}";
sha256 = "sha256-jGtUsb2gm8dN45wniD+PYoUlk8m1ssrfj1a7PPYEYuo=";
};
vendorHash = "sha256-6tdVpMztaBjoQRVG2vaUWuvnPq05zjbNAX9HBiC50t0=";
ldflags = [ "-s" "-w" ];
meta = with lib; {
description = "Packaging tool built around IPFS";
homepage = "https://github.com/whyrusleeping/gx";
license = licenses.mit;
maintainers = with maintainers; [ zimbatm ];
mainProgram = "gx";
};
}