3
0
Fork 0
forked from mirrors/nixpkgs
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";
2021-10-17 17:02:34 +01:00
version = "1.1.9";
2019-11-10 14:46:15 +00:00
nativeBuildInputs = [ cmake ];
src = fetchFromGitHub {
owner = "tevador";
repo = pname;
rev = "v${version}";
2021-10-17 17:02:34 +01:00
sha256 = "188fh4l8wda1y9vxa9asbk8nw35gyapw7gyn4w2p2qspdjhi5mnq";
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;
};
}