Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
41 lines
788 B
Nix
41 lines
788 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
buildGoModule,
|
|
nixosTests,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "quorum";
|
|
version = "24.4.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Consensys";
|
|
repo = "quorum";
|
|
rev = "v${version}";
|
|
hash = "sha256-pW8I4ivcKo6dsa8rQVKU6nUZuKxaki/7cMDKwEsSzNw=";
|
|
};
|
|
|
|
vendorHash = "sha256-YK2zpQz4pAFyA+aHOn6Nx0htl5SJ2HNC+TDV1RdLQJk=";
|
|
|
|
subPackages = [
|
|
"cmd/geth"
|
|
"cmd/bootnode"
|
|
];
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
];
|
|
|
|
passthru.tests = { inherit (nixosTests) quorum; };
|
|
|
|
meta = with lib; {
|
|
description = "Permissioned implementation of Ethereum supporting data privacy";
|
|
homepage = "https://consensys.net/quorum/";
|
|
license = licenses.lgpl3;
|
|
maintainers = with maintainers; [ mmahut ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|