mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
Merge pull request #55773 from xtruder/pkgs/rippled-validator-keys-tool/init
rippled-validatior-keys-tool: init at d7774bcc
This commit is contained in:
commit
c76dd2948d
34
pkgs/servers/rippled/validator-keys-tool.nix
Normal file
34
pkgs/servers/rippled/validator-keys-tool.nix
Normal file
@ -0,0 +1,34 @@
|
||||
{ stdenv, lib, fetchgit, cmake, openssl, boost, zlib, rippled }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "rippled-validator-keys-tool-20180927-${builtins.substring 0 7 rev}";
|
||||
rev = "d7774bcc1dc9439c586ea1c175fcd5ff3960b15f";
|
||||
|
||||
src = fetchgit {
|
||||
url = "https://github.com/ripple/validator-keys-tool.git";
|
||||
inherit rev;
|
||||
sha256 = "1hcbwwa21n692qpbm0vqy5jvvnf4aias309610m4kwdsnzfw0902";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
buildInputs = [ openssl boost zlib rippled ];
|
||||
|
||||
hardeningDisable = ["format"];
|
||||
|
||||
preConfigure = ''
|
||||
export CXX="$(command -v $CXX)"
|
||||
export CC="$(command -v $CC)"
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
install -D validator-keys $out/bin/validator-keys
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Generate master and ephemeral rippled validator keys";
|
||||
homepage = https://github.com/ripple/validator-keys-tool;
|
||||
maintainers = with maintainers; [ offline ];
|
||||
license = licenses.isc;
|
||||
platforms = [ "x86_64-linux" ];
|
||||
};
|
||||
}
|
@ -14152,6 +14152,12 @@ in
|
||||
boost = boost167;
|
||||
};
|
||||
|
||||
rippled-validator-keys-tool = callPackage ../servers/rippled/validator-keys-tool.nix {
|
||||
boost = boost167.override {
|
||||
enableStatic = true;
|
||||
};
|
||||
};
|
||||
|
||||
s6 = skawarePackages.s6;
|
||||
|
||||
s6-rc = skawarePackages.s6-rc;
|
||||
|
Loading…
Reference in New Issue
Block a user