1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 13:41:26 +00:00
nixpkgs/pkgs/tools/misc/cpuminer/default.nix

26 lines
691 B
Nix
Raw Normal View History

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