biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / package-management / gx / default.nix
blob8d9fa95f09c573394dd12c57ec976634cd791d2e
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "gx";
5   version = "0.14.3";
7   src = fetchFromGitHub {
8     owner = "whyrusleeping";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "sha256-jGtUsb2gm8dN45wniD+PYoUlk8m1ssrfj1a7PPYEYuo=";
12   };
14   vendorHash = "sha256-6tdVpMztaBjoQRVG2vaUWuvnPq05zjbNAX9HBiC50t0=";
16   ldflags = [ "-s" "-w" ];
18   meta = with lib; {
19     description = "Packaging tool built around IPFS";
20     homepage = "https://github.com/whyrusleeping/gx";
21     license = licenses.mit;
22     maintainers = with maintainers; [ zimbatm ];
23     mainProgram = "gx";
24   };