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

26 lines
689 B
Nix
Raw Normal View History

2016-07-30 19:06:37 -07:00
{ stdenv, fetchurl, curl, jansson, perl }:
stdenv.mkDerivation rec {
name = "cpuminer-${version}";
2016-03-25 09:05:41 -07:00
version = "2.4.4";
src = fetchurl {
url = "mirror://sourceforge/cpuminer/pooler-${name}.tar.gz";
2016-03-25 09:05:41 -07:00
sha256 = "0xdgz5qlx1yr3mw2h4bwlbj94y6v2ygjy334cnc87xgzxf1wgann";
};
2016-07-30 19:06:37 -07:00
patchPhase = if stdenv.cc.isClang then "${perl}/bin/perl ./nomacro.pl" else null;
buildInputs = [ curl jansson ];
configureFlags = [ "CFLAGS=-O3" ];
2015-06-01 11:28:11 -07:00
meta = with stdenv.lib; {
homepage = https://github.com/pooler/cpuminer;
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 ];
};
}