forked from mirrors/nixpkgs
rippled-validatior-keys-tool: init at d7774bcc
This commit is contained in:
parent
c400bdaa49
commit
2e9390861a
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" ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -13995,6 +13995,12 @@ in
|
||||||
boost = boost167;
|
boost = boost167;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
rippled-validator-keys-tool = callPackage ../servers/rippled/validator-keys-tool.nix {
|
||||||
|
boost = boost167.override {
|
||||||
|
enableStatic = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
s6 = skawarePackages.s6;
|
s6 = skawarePackages.s6;
|
||||||
|
|
||||||
s6-rc = skawarePackages.s6-rc;
|
s6-rc = skawarePackages.s6-rc;
|
||||||
|
|
Loading…
Reference in a new issue