nixpkgs/pkgs/tools/misc/hyperledger-fabric/default.nix
2022-06-11 15:52:57 +03:00

56 lines
1.4 KiB
Nix

{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "hyperledger-fabric";
version = "2.4.3";
commit = "9711fb5d0c16297584f5c53123f589110828736f";
src = fetchFromGitHub {
owner = "hyperledger";
repo = "fabric";
rev = "v${version}";
sha256 = "sha256-gXVahzpuIUWAHq4gJ1rbq943zIuWrl/ojDMQDFfI14I=";
};
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;
};
meta = with lib; {
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.
'';
homepage = "https://wiki.hyperledger.org/display/fabric";
license = licenses.asl20;
maintainers = with maintainers; [ marsam ];
};
}