nixpkgs/pkgs/tools/package-management/gx/default.nix
Fabián Heredia Montiel ff323ed355 treewide: vendorSha256 → vendorHash
via: `find pkgs/ -type f -exec sed -i 's/vendorSha256 = "sha256/vendorHash = "sha256/' {};`
2023-09-13 01:03:44 -06:00

25 lines
587 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 = "A packaging tool built around IPFS";
homepage = "https://github.com/whyrusleeping/gx";
license = licenses.mit;
maintainers = with maintainers; [ zimbatm ];
};
}