tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
ipget: init at 0.2.5
Dmitry Kalinkin
8 years ago
562f8313
1d317bd8
+34
2 changed files
expand all
collapse all
unified
split
pkgs
applications
networking
ipget
default.nix
top-level
all-packages.nix
+32
pkgs/applications/networking/ipget/default.nix
···
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
···
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
0
0
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
};