rippled-validatior-keys-tool: init at d7774bcc

This commit is contained in:
Jaka Hudoklin 2019-02-14 18:54:17 +01:00
parent c400bdaa49
commit 2e9390861a
No known key found for this signature in database
GPG key ID: 6A08896BFD32BD95
2 changed files with 40 additions and 0 deletions

View 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" ];
};
}

View file

@ -13995,6 +13995,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;