nixpkgs/pkgs/tools/misc/hyperledger-fabric/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

58 lines
1.4 KiB
Nix
Raw Normal View History

2022-06-11 12:52:57 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
2018-12-19 23:36:06 +00:00
2022-06-11 12:52:57 +00:00
buildGoModule rec {
2018-12-19 23:36:06 +00:00
pname = "hyperledger-fabric";
version = "2.4.9";
2018-12-19 23:36:06 +00:00
src = fetchFromGitHub {
owner = "hyperledger";
repo = "fabric";
rev = "v${version}";
hash = "sha256-tHchOki5xlu87onUCqdK/OQxJ6lcvhlUlLcQM6Fap+A=";
2018-12-19 23:36:06 +00:00
};
vendorHash = null;
2022-06-11 12:52:57 +00:00
postPatch = ''
# Broken
rm cmd/peer/main_test.go
# Requires network
rm cmd/osnadmin/main_test.go
2022-06-11 12:52:57 +00:00
'';
subPackages = [
"cmd/configtxgen"
"cmd/configtxlator"
"cmd/cryptogen"
"cmd/discover"
"cmd/ledgerutil"
"cmd/orderer"
"cmd/osnadmin"
"cmd/peer"
];
2022-08-12 04:20:00 +00:00
ldflags = [
"-s"
"-w"
"-X github.com/hyperledger/fabric/common/metadata.Version=${version}"
"-X github.com/hyperledger/fabric/common/metadata.CommitSha=${src.rev}"
];
2018-12-19 23:36:06 +00:00
meta = with lib; {
2022-06-11 12:52:57 +00:00
description = "High-performance, secure, permissioned blockchain network";
longDescription = ''
Hyperledger Fabric is an enterprise-grade permissioned distributed ledger
framework for developing solutions and applications. Its modular and
versatile design satisfies a broad range of industry use cases. It offers
a unique approach to consensus that enables performance at scale while
preserving privacy.
'';
2022-02-06 13:24:32 +00:00
homepage = "https://wiki.hyperledger.org/display/fabric";
2018-12-19 23:36:06 +00:00
license = licenses.asl20;
2022-06-11 12:52:57 +00:00
maintainers = with maintainers; [ marsam ];
2018-12-19 23:36:06 +00:00
};
}