nixpkgs/pkgs/tools/misc/cpuminer-multi/default.nix

34 lines
907 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, curl, jansson, autoconf, automake
, 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
};
buildInputs = [ autoconf automake curl jansson ];
2014-06-29 04:05:39 +00:00
preConfigure = ''
./autogen.sh
'';
configureFlags = [ (if aesni then "--enable-aes-ni" else "--disable-aes-ni") ];
2014-06-29 04:05:39 +00:00
meta = with lib; {
2014-06-29 04:05:39 +00:00
description = "Multi-algo CPUMiner";
homepage = "https://github.com/wolf9466/cpuminer-multi";
2014-06-29 04:05:39 +00:00
license = licenses.gpl2;
# does not build on i686 https://github.com/lucasjones/cpuminer-multi/issues/27
platforms = [ "x86_64-linux" ];
2014-06-29 04:05:39 +00:00
};
2016-07-31 15:10:41 +00:00
}