2016-07-31 02:06:37 +00:00
|
|
|
{ stdenv, fetchurl, curl, jansson, perl }:
|
2014-01-12 23:02:30 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "cpuminer-${version}";
|
2017-07-04 09:42:51 +00:00
|
|
|
version = "2.5.0";
|
2014-01-12 23:02:30 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/cpuminer/pooler-${name}.tar.gz";
|
2017-07-04 09:42:51 +00:00
|
|
|
sha256 = "1xalrfrk5hvh1jh9kbqhib2an82ypd46vl9glaxhz3rbjld7c5pa";
|
2014-01-12 23:02:30 +00:00
|
|
|
};
|
|
|
|
|
2016-07-31 02:06:37 +00:00
|
|
|
patchPhase = if stdenv.cc.isClang then "${perl}/bin/perl ./nomacro.pl" else null;
|
|
|
|
|
2014-01-12 23:02:30 +00:00
|
|
|
buildInputs = [ curl jansson ];
|
|
|
|
|
2014-07-16 22:15:13 +00:00
|
|
|
configureFlags = [ "CFLAGS=-O3" ];
|
|
|
|
|
2015-06-01 18:28:11 +00:00
|
|
|
meta = with stdenv.lib; {
|
2014-01-12 23:02:30 +00:00
|
|
|
homepage = https://github.com/pooler/cpuminer;
|
|
|
|
description = "CPU miner for Litecoin and Bitcoin";
|
2015-06-01 18:28:11 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ pSub ];
|
2014-01-12 23:02:30 +00:00
|
|
|
};
|
|
|
|
}
|