randomx: init at 1.1.6
This commit is contained in:
parent
039d299810
commit
8dd85714c0
2 changed files with 26 additions and 0 deletions
24
pkgs/development/libraries/randomx/default.nix
Normal file
24
pkgs/development/libraries/randomx/default.nix
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
{ stdenv, fetchFromGitHub, cmake }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "randomX";
|
||||||
|
version = "1.1.6";
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake ];
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "tevador";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1qd0rbzgxdy87wwy0n6ca29bcq25j5ndnfgmx8iyf225m4rcwngf";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Proof of work algorithm based on random code execution";
|
||||||
|
homepage = https://github.com/tevador/RandomX;
|
||||||
|
license = licenses.bsd3;
|
||||||
|
maintainers = with maintainers; [ rnhmjoj ];
|
||||||
|
platforms = platforms.unix;
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
|
@ -13761,6 +13761,8 @@ in
|
||||||
|
|
||||||
qgnomeplatform = libsForQt5.callPackage ../development/libraries/qgnomeplatform { };
|
qgnomeplatform = libsForQt5.callPackage ../development/libraries/qgnomeplatform { };
|
||||||
|
|
||||||
|
randomx = callPackage ../development/libraries/randomx { };
|
||||||
|
|
||||||
resolv_wrapper = callPackage ../development/libraries/resolv_wrapper { };
|
resolv_wrapper = callPackage ../development/libraries/resolv_wrapper { };
|
||||||
|
|
||||||
rhino = callPackage ../development/libraries/java/rhino {
|
rhino = callPackage ../development/libraries/java/rhino {
|
||||||
|
|
Loading…
Reference in a new issue