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.

56 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";
2022-06-11 12:52:57 +00:00
version = "2.4.3";
commit = "9711fb5d0c16297584f5c53123f589110828736f";
2018-12-19 23:36:06 +00:00
src = fetchFromGitHub {
owner = "hyperledger";
repo = "fabric";
rev = "v${version}";
2022-06-11 12:52:57 +00:00
sha256 = "sha256-gXVahzpuIUWAHq4gJ1rbq943zIuWrl/ojDMQDFfI14I=";
2018-12-19 23:36:06 +00:00
};
2022-06-11 12:52:57 +00:00
vendorSha256 = null;
postPatch = ''
# Broken
rm cmd/peer/main_test.go
'';
subPackages = [
"cmd/configtxgen"
"cmd/configtxlator"
"cmd/cryptogen"
"cmd/discover"
"cmd/ledgerutil"
"cmd/orderer"
"cmd/osnadmin"
"cmd/peer"
];
ldflags = lib.mapAttrsToList
(n: v: "github.com/hyperledger/fabric/common/metadata.${n}=${v}") {
Version = version;
CommitSha = commit;
};
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
};
}