forked from mirrors/nixpkgs
ipfs: extracted from goPackages
This commit is contained in:
parent
7eb671ebcd
commit
30acfc3b45
21
pkgs/applications/networking/ipfs/default.nix
Normal file
21
pkgs/applications/networking/ipfs/default.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{ stdenv, lib, buildGoPackage, consul-ui, fetchFromGitHub }:
|
||||
|
||||
buildGoPackage rec {
|
||||
name = "ipfs-${version}";
|
||||
version = "i20160112--${stdenv.lib.strings.substring 0 7 rev}";
|
||||
rev = "7070b4d878baad57dcc8da80080dd293aa46cabd";
|
||||
|
||||
goPackagePath = "github.com/ipfs/go-ipfs";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ipfs";
|
||||
repo = "go-ipfs";
|
||||
inherit rev;
|
||||
sha256 = "1b7aimnbz287fy7p27v3qdxnz514r5142v3jihqxanbk9g384gcd";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A global, versioned, peer-to-peer filesystem";
|
||||
license = licenses.mit;
|
||||
};
|
||||
}
|
|
@ -2063,7 +2063,7 @@ in
|
|||
iperf3 = callPackage ../tools/networking/iperf/3.nix { };
|
||||
iperf = self.iperf3;
|
||||
|
||||
ipfs = self.goPackages.ipfs.bin // { outputs = [ "bin" ]; };
|
||||
ipfs = callPackage ../applications/networking/ipfs { };
|
||||
|
||||
ipmitool = callPackage ../tools/system/ipmitool {
|
||||
static = false;
|
||||
|
|
Loading…
Reference in a new issue