diff options
Diffstat (limited to 'pkgs/applications/blockchains/quorum/default.nix')
-rw-r--r-- | pkgs/applications/blockchains/quorum/default.nix | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/pkgs/applications/blockchains/quorum/default.nix b/pkgs/applications/blockchains/quorum/default.nix index b50d91a07e895..528caec921763 100644 --- a/pkgs/applications/blockchains/quorum/default.nix +++ b/pkgs/applications/blockchains/quorum/default.nix @@ -2,21 +2,16 @@ buildGoModule rec { pname = "quorum"; - version = "23.4.0"; + version = "24.4.0"; src = fetchFromGitHub { owner = "Consensys"; repo = pname; rev = "v${version}"; - hash = "sha256-N8MlDHo6LQ/m9xFUeOCm6bqDtjnCc86i/s4ebFLjUT0="; + hash = "sha256-vQyKguoSUU6Drkg8XqWtK8Ow/B9dqDKkKq6yeDQk1c0="; }; - vendorHash = "sha256-dTYKGFqVaAnspvKhfBU10bpSzhtQHGTm6KxnNKUVAIg="; - - patches = [ - # Add missing requirements - ./go.mod.patch - ]; + vendorHash = "sha256-YK2zpQz4pAFyA+aHOn6Nx0htl5SJ2HNC+TDV1RdLQJk="; subPackages = [ "cmd/geth" @@ -30,6 +25,6 @@ buildGoModule rec { homepage = "https://consensys.net/quorum/"; license = licenses.lgpl3; maintainers = with maintainers; [ mmahut ]; - platforms = [ "x86_64-linux" "x86_64-darwin" ]; + platforms = platforms.linux; }; } |