1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/tools/misc/cpuminer/default.nix

26 lines
689 B
Nix
Raw Normal View History

2016-07-31 03:06:37 +01:00
{ stdenv, fetchurl, curl, jansson, perl }:
stdenv.mkDerivation rec {
name = "cpuminer-${version}";
2016-07-31 13:01:54 +01:00
version = "2.4.5";
src = fetchurl {
url = "mirror://sourceforge/cpuminer/pooler-${name}.tar.gz";
2016-07-31 13:01:54 +01:00
sha256 = "130ab6vcbm9azl9w8n97fzjnjbakm0k2n3wc1bcgy5y5c8s0220h";
};
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 ];
};
}