ipget: init at 0.2.5

gstqt5
Dmitry Kalinkin 2017-10-22 21:46:40 -04:00
parent 1d317bd84a
commit 562f8313e0
No known key found for this signature in database
GPG Key ID: 5157B3EC8B2CA333
2 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,32 @@
{ stdenv, buildGoPackage, fetchFromGitHub, fetchgx }:
buildGoPackage rec {
name = "ipget-${version}";
version = "0.2.5";
rev = "v${version}";
goPackagePath = "github.com/ipfs/ipget";
extraSrcPaths = [
(fetchgx {
inherit name src;
sha256 = "1d4w8zl5mcppn3d4bl7qdkiqlf8gi3z2a62nygx17bqpa3da8cf3";
})
];
goDeps = ../../../tools/package-management/gx/deps.nix;
src = fetchFromGitHub {
owner = "ipfs";
repo = "ipget";
inherit rev;
sha256 = "0a8yxqhl469ipiznrgkp3yi1xz3xzcbpx60wabqppq8hccrdiybk";
};
meta = with stdenv.lib; {
description = "Retrieve files over IPFS and save them locally";
homepage = https://ipfs.io/;
license = licenses.mit;
platforms = platforms.unix;
};
}

View File

@ -2717,6 +2717,8 @@ with pkgs;
ipfs = callPackage ../applications/networking/ipfs { };
ipfs-migrator = callPackage ../applications/networking/ipfs-migrator { };
ipget = callPackage ../applications/networking/ipget { };
ipmitool = callPackage ../tools/system/ipmitool {
static = false;
};