ipget: 0.8.1->0.9.1

Also build with go1.18 now that it works
This commit is contained in:
Romanos Skiadas 2022-06-30 08:43:46 +03:00
parent 2e03101f01
commit d12a36559b
2 changed files with 6 additions and 4 deletions

View file

@ -2,16 +2,16 @@
buildGoModule rec {
pname = "ipget";
version = "0.8.1";
version = "0.9.1";
src = fetchFromGitHub {
owner = "ipfs";
repo = "ipget";
rev = "v${version}";
sha256 = "sha256-gtDmBy7IpZCbeDG8JeKvMoaJmXpjnmKGustaNLIlTlY=";
sha256 = "sha256-JGG3DsmFXmWFOFvJ8pKVhQMRgZ0cbkdtmBjMkLYqOwU=";
};
vendorSha256 = "sha256-La9V5B+UDaOswh/R8ad4xsnCF5ewtF7G+uiqnarM4Mg=";
vendorSha256 = "sha256-scrueQoqr9nUONnpitUontcX3Xe0KmmUmvxOcpxK7M8=";
postPatch = ''
# main module (github.com/ipfs/ipget) does not contain package github.com/ipfs/ipget/sharness/dependencies

View file

@ -7376,7 +7376,9 @@ with pkgs;
ipfs-migrator-unwrapped = callPackage ../applications/networking/ipfs-migrator/unwrapped.nix { };
ipfs-migrator = callPackage ../applications/networking/ipfs-migrator { };
ipget = callPackage ../applications/networking/ipget { };
ipget = callPackage ../applications/networking/ipget {
buildGoModule = buildGo118Module;
};
i-pi = with python3Packages; toPythonApplication i-pi;