Merge pull request #224625 from Luflosi/update/ipget

ipget: 0.9.1 -> 0.9.2
This commit is contained in:
Mario Rodas 2023-04-06 18:29:26 -05:00 committed by GitHub
commit 3b075d64a4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 6 deletions

View file

@ -2,16 +2,16 @@
buildGoModule rec { buildGoModule rec {
pname = "ipget"; pname = "ipget";
version = "0.9.1"; version = "0.9.2";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "ipfs"; owner = "ipfs";
repo = "ipget"; repo = "ipget";
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-JGG3DsmFXmWFOFvJ8pKVhQMRgZ0cbkdtmBjMkLYqOwU="; hash = "sha256-gcxfsP5awCCau1RqCuXKEdXC2jvpwsGsPkBsiaRlfBU=";
}; };
vendorSha256 = "sha256-scrueQoqr9nUONnpitUontcX3Xe0KmmUmvxOcpxK7M8="; vendorHash = "sha256-qCUa/XbfDrbwPSZywNVK/yn88C7Dsmz0cDTG2Z4ho0Y=";
postPatch = '' postPatch = ''
# main module (github.com/ipfs/ipget) does not contain package github.com/ipfs/ipget/sharness/dependencies # main module (github.com/ipfs/ipget) does not contain package github.com/ipfs/ipget/sharness/dependencies

View file

@ -8641,9 +8641,7 @@ with pkgs;
ipfs-upload-client = callPackage ../applications/networking/ipfs-upload-client { }; ipfs-upload-client = callPackage ../applications/networking/ipfs-upload-client { };
ipget = callPackage ../applications/networking/ipget { ipget = callPackage ../applications/networking/ipget { };
buildGoModule = buildGo118Module; # build fails with 1.19
};
i-pi = with python3Packages; toPythonApplication i-pi; i-pi = with python3Packages; toPythonApplication i-pi;