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

31 lines
820 B
Nix
Raw Normal View History

{ stdenv, fetchgit, curl, jansson, autoconf, automake
2014-06-29 04:05:39 +00:00
, aesni ? true }:
let
rev = "977dad27e18627e5b723800f5f4201e385fe0d2e";
date = "20140723";
2014-06-29 04:05:39 +00:00
in
stdenv.mkDerivation rec {
name = "cpuminer-multi-${date}-${stdenv.lib.strings.substring 0 7 rev}";
src = fetchgit {
inherit rev;
url = https://github.com/wolf9466/cpuminer-multi.git;
sha256 = "9c438c6cd9f40273822f3d3103a370e43e8a40368695ed5e01ae87297dce7843";
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 stdenv.lib; {
description = "Multi-algo CPUMiner";
homepage = https://github.com/wolf9466/cpuminer-multi;
license = licenses.gpl2;
maintainers = [ maintainers.ehmry ];
2014-06-29 04:05:39 +00:00
};
}