commit
feff5202d2
35
pkgs/applications/blockchains/quorum.nix
Normal file
35
pkgs/applications/blockchains/quorum.nix
Normal file
@ -0,0 +1,35 @@
|
||||
{ stdenv, fetchFromGitHub, buildGoPackage, git, which }:
|
||||
|
||||
buildGoPackage rec {
|
||||
pname = "quorum";
|
||||
version = "2.5.0";
|
||||
|
||||
goPackagePath = "github.com/jpmorganchase/quorum";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jpmorganchase";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "0xfdaqp9bj5dkw12gy19lxj73zh7w80j051xclsvnd41sfah86ll";
|
||||
};
|
||||
|
||||
buildInputs = [ git which ];
|
||||
|
||||
buildPhase = ''
|
||||
cd "go/src/$goPackagePath"
|
||||
make geth bootnode swarm
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
mkdir -pv $bin/bin
|
||||
cp -v build/bin/geth build/bin/bootnode build/bin/swarm $bin/bin
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A permissioned implementation of Ethereum supporting data privacy";
|
||||
homepage = "https://www.goquorum.com/";
|
||||
license = licenses.lgpl3;
|
||||
maintainers = with maintainers; [ mmahut ];
|
||||
platforms = subtractLists ["aarch64-linux"] platforms.linux;
|
||||
};
|
||||
}
|
@ -22978,6 +22978,8 @@ in
|
||||
|
||||
particl-core = callPackage ../applications/blockchains/particl/particl-core.nix { miniupnpc = miniupnpc_2; };
|
||||
|
||||
quorum = callPackage ../applications/blockchains/quorum.nix { };
|
||||
|
||||
### GAMES
|
||||
|
||||
_2048-in-terminal = callPackage ../games/2048-in-terminal { };
|
||||
|
Loading…
Reference in New Issue
Block a user