nixpkgs/pkgs/applications/networking/ipget/default.nix

33 lines
750 B
Nix
Raw Normal View History

2017-10-23 02:46:40 +01:00
{ stdenv, buildGoPackage, fetchFromGitHub, fetchgx }:
buildGoPackage rec {
name = "ipget-${version}";
version = "0.3.2";
2017-10-23 02:46:40 +01:00
rev = "v${version}";
goPackagePath = "github.com/ipfs/ipget";
2017-10-23 02:46:40 +01:00
extraSrcPaths = [
(fetchgx {
inherit name src;
sha256 = "07l9hpkhk5phr95zp1l5wd3ii38bw91hy4dlw2rsfbzcsc8bq4s8";
2017-10-23 02:46:40 +01:00
})
];
2017-10-23 02:46:40 +01:00
goDeps = ../../../tools/package-management/gx/deps.nix;
src = fetchFromGitHub {
owner = "ipfs";
repo = "ipget";
inherit rev;
sha256 = "1ljf5ddvc1p5swmgn4m1ivfj74fykk56myk2r9c4grdjzksf4a15";
2017-10-23 02:46:40 +01:00
};
meta = with stdenv.lib; {
description = "Retrieve files over IPFS and save them locally";
homepage = https://ipfs.io/;
license = licenses.mit;
platforms = platforms.unix;
};
}