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

26 lines
691 B
Nix
Raw Normal View History

2016-07-31 02:06:37 +00:00
{ stdenv, fetchurl, curl, jansson, perl }:
stdenv.mkDerivation rec {
pname = "cpuminer";
2017-07-04 09:42:51 +00:00
version = "2.5.0";
src = fetchurl {
url = "mirror://sourceforge/cpuminer/pooler-${pname}-${version}.tar.gz";
2017-07-04 09:42:51 +00:00
sha256 = "1xalrfrk5hvh1jh9kbqhib2an82ypd46vl9glaxhz3rbjld7c5pa";
};
2016-07-31 02:06:37 +00:00
patchPhase = if stdenv.cc.isClang then "${perl}/bin/perl ./nomacro.pl" else null;
buildInputs = [ curl jansson ];
configureFlags = [ "CFLAGS=-O3" ];
2015-06-01 18:28:11 +00:00
meta = with stdenv.lib; {
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 ];
};
}