2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, curl, jansson, autoconf, automake
|
2020-08-05 02:32:41 +00:00
|
|
|
, aesni ? stdenv.hostPlatform.aesSupport }:
|
2014-06-29 04:05:39 +00:00
|
|
|
|
|
|
|
let
|
2016-07-31 15:10:41 +00:00
|
|
|
rev = "8393e03089c0abde61bd5d72aba8f926c3d6eca4";
|
|
|
|
date = "20160316";
|
2014-06-29 04:05:39 +00:00
|
|
|
in
|
2019-08-13 21:52:01 +00:00
|
|
|
stdenv.mkDerivation {
|
2021-01-15 09:19:50 +00:00
|
|
|
name = "cpuminer-multi-${date}-${lib.strings.substring 0 7 rev}";
|
2014-06-29 04:05:39 +00:00
|
|
|
|
2020-11-18 03:37:53 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "hyc";
|
|
|
|
repo = "cpuminer-multi";
|
2014-06-29 04:05:39 +00:00
|
|
|
inherit rev;
|
2016-07-31 15:10:41 +00:00
|
|
|
sha256 = "11dg4rra4dgfb9x6q85irn0hrkx2lkwyrdpgdh10pag09s3vhy4v";
|
2014-06-29 04:05:39 +00:00
|
|
|
};
|
|
|
|
|
2014-09-22 16:28:19 +00:00
|
|
|
buildInputs = [ autoconf automake curl jansson ];
|
2014-06-29 04:05:39 +00:00
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
./autogen.sh
|
|
|
|
'';
|
|
|
|
|
2014-09-22 16:28:19 +00:00
|
|
|
configureFlags = [ (if aesni then "--enable-aes-ni" else "--disable-aes-ni") ];
|
2014-06-29 04:05:39 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2014-06-29 04:05:39 +00:00
|
|
|
description = "Multi-algo CPUMiner";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/wolf9466/cpuminer-multi";
|
2014-06-29 04:05:39 +00:00
|
|
|
license = licenses.gpl2;
|
2015-12-05 21:41:25 +00:00
|
|
|
maintainers = [ maintainers.ehmry ];
|
2016-08-07 07:22:47 +00:00
|
|
|
# does not build on i686 https://github.com/lucasjones/cpuminer-multi/issues/27
|
2020-08-05 02:32:41 +00:00
|
|
|
platforms = [ "x86_64-linux" ];
|
2014-06-29 04:05:39 +00:00
|
|
|
};
|
2016-07-31 15:10:41 +00:00
|
|
|
}
|