2023-04-19 11:08:31 +02:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
2020-06-23 23:57:18 +02:00
|
|
|
, fetchFromGitHub
|
2023-04-19 11:08:31 +02:00
|
|
|
, fetchpatch
|
2020-06-23 23:57:18 +02:00
|
|
|
, curl
|
|
|
|
, jansson
|
|
|
|
, perl
|
|
|
|
, autoreconfHook
|
|
|
|
}:
|
2014-01-13 00:02:30 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "cpuminer";
|
2020-06-23 23:57:18 +02:00
|
|
|
version = "2.5.1";
|
2014-01-13 00:02:30 +01:00
|
|
|
|
2020-06-23 23:57:18 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "pooler";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "0f44i0z8rid20c2hiyp92xq0q0mjj537r05sa6vdbc0nl0a5q40i";
|
2014-01-13 00:02:30 +01:00
|
|
|
};
|
|
|
|
|
2023-04-19 11:08:31 +02:00
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
|
|
|
name = "fix-build-on-aarch64.patch";
|
|
|
|
url = "https://github.com/pooler/cpuminer/commit/5f02105940edb61144c09a7eb960bba04a10d5b7.patch";
|
|
|
|
hash = "sha256-lGAcwDcXgcJBFhasSEdQIEIY7pp6x/PEXHBsVwAOqhc=";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
|
|
|
postPatch = if stdenv.cc.isClang then "${perl}/bin/perl ./nomacro.pl" else null;
|
2016-07-31 04:06:37 +02:00
|
|
|
|
2022-09-25 04:49:25 +02:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
buildInputs = [ curl jansson ];
|
2014-01-13 00:02:30 +01:00
|
|
|
|
2014-07-17 00:15:13 +02:00
|
|
|
configureFlags = [ "CFLAGS=-O3" ];
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/pooler/cpuminer";
|
2014-01-13 00:02:30 +01:00
|
|
|
description = "CPU miner for Litecoin and Bitcoin";
|
2015-06-01 20:28:11 +02:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ pSub ];
|
2023-11-27 02:17:53 +01:00
|
|
|
mainProgram = "minerd";
|
2014-01-13 00:02:30 +01:00
|
|
|
};
|
|
|
|
}
|