2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
2017-10-23 02:46:40 +01:00
|
|
|
|
2020-05-11 20:02:09 +01:00
|
|
|
buildGoModule rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "ipget";
|
2022-01-15 16:30:11 +00:00
|
|
|
version = "0.8.0";
|
2017-10-23 02:46:40 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ipfs";
|
|
|
|
repo = "ipget";
|
2020-05-11 20:02:09 +01:00
|
|
|
rev = "v${version}";
|
2022-01-15 16:30:11 +00:00
|
|
|
sha256 = "sha256-qRPke8/CUmGX6v+8qv9JQCUC8T9pjwRRyGmBWvatsJ0=";
|
2017-10-23 02:46:40 +01:00
|
|
|
};
|
|
|
|
|
2022-01-15 16:30:11 +00:00
|
|
|
vendorSha256 = "sha256-La9V5B+UDaOswh/R8ad4xsnCF5ewtF7G+uiqnarM4Mg=";
|
2021-07-29 20:01:18 +01:00
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
# main module (github.com/ipfs/ipget) does not contain package github.com/ipfs/ipget/sharness/dependencies
|
|
|
|
rm -r sharness/dependencies/
|
|
|
|
'';
|
2020-05-11 20:02:09 +01:00
|
|
|
|
2020-08-04 01:26:27 +01:00
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-10-23 02:46:40 +01:00
|
|
|
description = "Retrieve files over IPFS and save them locally";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://ipfs.io/";
|
2017-10-23 02:46:40 +01:00
|
|
|
license = licenses.mit;
|
2020-05-11 20:02:09 +01:00
|
|
|
maintainers = with maintainers; [ Luflosi ];
|
2017-10-23 02:46:40 +01:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|