2021-01-10 23:54:33 -08:00
|
|
|
{ lib, stdenv
|
2020-06-23 14:57:18 -07:00
|
|
|
, fetchFromGitHub
|
|
|
|
, curl
|
|
|
|
, jansson
|
|
|
|
, perl
|
|
|
|
, autoreconfHook
|
|
|
|
}:
|
2014-01-12 15:02:30 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "cpuminer";
|
2020-06-23 14:57:18 -07:00
|
|
|
version = "2.5.1";
|
2014-01-12 15:02:30 -08:00
|
|
|
|
2020-06-23 14:57:18 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "pooler";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "0f44i0z8rid20c2hiyp92xq0q0mjj537r05sa6vdbc0nl0a5q40i";
|
2014-01-12 15:02:30 -08:00
|
|
|
};
|
|
|
|
|
2016-07-30 19:06:37 -07:00
|
|
|
patchPhase = if stdenv.cc.isClang then "${perl}/bin/perl ./nomacro.pl" else null;
|
|
|
|
|
2020-06-23 14:57:18 -07:00
|
|
|
buildInputs = [ curl jansson autoreconfHook ];
|
2014-01-12 15:02:30 -08:00
|
|
|
|
2014-07-16 15:15:13 -07:00
|
|
|
configureFlags = [ "CFLAGS=-O3" ];
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/pooler/cpuminer";
|
2014-01-12 15:02:30 -08:00
|
|
|
description = "CPU miner for Litecoin and Bitcoin";
|
2015-06-01 11:28:11 -07:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ pSub ];
|
2014-01-12 15:02:30 -08:00
|
|
|
};
|
|
|
|
}
|