3
0
Fork 0
forked from mirrors/nixpkgs

hyperledger-fabric: init at 1.3.0

This commit is contained in:
Mario Rodas 2018-12-19 18:36:06 -05:00 committed by worldofpeace
parent db996dd7f8
commit 0410537561
2 changed files with 37 additions and 0 deletions

View file

@ -0,0 +1,35 @@
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
pname = "hyperledger-fabric";
version = "1.3.0";
goPackagePath = "github.com/hyperledger/fabric";
# taken from https://github.com/hyperledger/fabric/blob/v1.3.0/Makefile#L108
subPackages = [
"common/tools/configtxgen"
"common/tools/configtxlator"
"common/tools/cryptogen"
"common/tools/idemixgen"
"cmd/discover"
"peer"
"orderer"
];
src = fetchFromGitHub {
owner = "hyperledger";
repo = "fabric";
rev = "v${version}";
sha256 = "08qrrxzgkqg9v7n3y8f2vggyqx9j65wisxi17hrabz5mzaq299xs";
};
doCheck = true;
meta = with stdenv.lib; {
description = "An implementation of blockchain technology, leveraging familiar and proven technologies";
homepage = https://wiki.hyperledger.org/projects/Fabric;
license = licenses.asl20;
maintainers = [ maintainers.marsam ];
};
}

View file

@ -17525,6 +17525,8 @@ in
extra-packages = [ csound ];
};
hyperledger-fabric = callPackage ../tools/misc/hyperledger-fabric { };
jackline = callPackage ../applications/networking/instant-messengers/jackline { };
slack = callPackage ../applications/networking/instant-messengers/slack { };