nixpkgs/pkgs/development/libraries/randomx/default.nix

25 lines
580 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake }:
2019-11-10 14:46:15 +00:00
stdenv.mkDerivation rec {
pname = "randomX";
2020-07-10 23:22:42 +01:00
version = "1.1.8";
2019-11-10 14:46:15 +00:00
nativeBuildInputs = [ cmake ];
src = fetchFromGitHub {
owner = "tevador";
repo = pname;
rev = "v${version}";
2020-07-10 23:22:42 +01:00
sha256 = "13h2cw8drq7xn3v8fbpxrlsl8zq3fs8gd2pc1pv28ahr9qqjz1gc";
2019-11-10 14:46:15 +00:00
};
meta = with lib; {
2019-11-10 14:46:15 +00:00
description = "Proof of work algorithm based on random code execution";
homepage = "https://github.com/tevador/RandomX";
2019-11-10 14:46:15 +00:00
license = licenses.bsd3;
maintainers = with maintainers; [ rnhmjoj ];
platforms = platforms.unix;
};
}