ipget: init at 0.2.5

+34
+32
pkgs/applications/networking/ipget/default.nix
···
··· 1 + { stdenv, buildGoPackage, fetchFromGitHub, fetchgx }: 2 + 3 + buildGoPackage rec { 4 + name = "ipget-${version}"; 5 + version = "0.2.5"; 6 + rev = "v${version}"; 7 + 8 + goPackagePath = "github.com/ipfs/ipget"; 9 + 10 + extraSrcPaths = [ 11 + (fetchgx { 12 + inherit name src; 13 + sha256 = "1d4w8zl5mcppn3d4bl7qdkiqlf8gi3z2a62nygx17bqpa3da8cf3"; 14 + }) 15 + ]; 16 + 17 + goDeps = ../../../tools/package-management/gx/deps.nix; 18 + 19 + src = fetchFromGitHub { 20 + owner = "ipfs"; 21 + repo = "ipget"; 22 + inherit rev; 23 + sha256 = "0a8yxqhl469ipiznrgkp3yi1xz3xzcbpx60wabqppq8hccrdiybk"; 24 + }; 25 + 26 + meta = with stdenv.lib; { 27 + description = "Retrieve files over IPFS and save them locally"; 28 + homepage = https://ipfs.io/; 29 + license = licenses.mit; 30 + platforms = platforms.unix; 31 + }; 32 + }
+2
pkgs/top-level/all-packages.nix
··· 2717 ipfs = callPackage ../applications/networking/ipfs { }; 2718 ipfs-migrator = callPackage ../applications/networking/ipfs-migrator { }; 2719 2720 ipmitool = callPackage ../tools/system/ipmitool { 2721 static = false; 2722 };
··· 2717 ipfs = callPackage ../applications/networking/ipfs { }; 2718 ipfs-migrator = callPackage ../applications/networking/ipfs-migrator { }; 2719 2720 + ipget = callPackage ../applications/networking/ipget { }; 2721 + 2722 ipmitool = callPackage ../tools/system/ipmitool { 2723 static = false; 2724 };