mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
Merge pull request #313407 from aaronjheng/quorum
quorum: 23.4.0 -> 24.4.0
This commit is contained in:
commit
dfad10e83e
2 changed files with 4 additions and 21 deletions
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,12 +0,0 @@
|
|||
diff --git a/go.mod b/go.mod
|
||||
index ace412f41..3336c1e08 100644
|
||||
--- a/go.mod
|
||||
+++ b/go.mod
|
||||
@@ -89,6 +89,7 @@ require (
|
||||
golang.org/x/text v0.3.7
|
||||
golang.org/x/time v0.0.0-20201208040808-7e3f01d25324
|
||||
google.golang.org/grpc v1.46.0
|
||||
+ google.golang.org/protobuf v1.28.0
|
||||
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c
|
||||
gopkg.in/karalabe/cookiejar.v2 v2.0.0-20150724131613-8dcd6a7f4951
|
||||
gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce
|
Loading…
Reference in a new issue