nixpkgs-suyu/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.3 KiB
Nix
Raw Normal View History

2022-06-11 14:52:57 +02:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
2018-12-20 00:36:06 +01:00
2022-06-11 14:52:57 +02:00
buildGoModule rec {
2018-12-20 00:36:06 +01:00
pname = "hyperledger-fabric";
2022-08-12 06:20:00 +02:00
version = "2.4.6";
2018-12-20 00:36:06 +01:00
src = fetchFromGitHub {
owner = "hyperledger";
repo = "fabric";
rev = "v${version}";
2022-08-12 06:20:00 +02:00
sha256 = "sha256-Q0qrDPih3M4YCzjhLFBy51qVvoICwwn1LJf63rYiUUg=";
2018-12-20 00:36:06 +01:00
};
2022-06-11 14:52:57 +02: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"
];
2022-08-12 06:20:00 +02: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-20 00:36:06 +01:00
meta = with lib; {
2022-06-11 14:52:57 +02: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 14:24:32 +01:00
homepage = "https://wiki.hyperledger.org/display/fabric";
2018-12-20 00:36:06 +01:00
license = licenses.asl20;
2022-06-11 14:52:57 +02:00
maintainers = with maintainers; [ marsam ];
2018-12-20 00:36:06 +01:00
};
}