summary refs log tree commit diff
path: root/pkgs/tools/misc/cpuminer/default.nix
blob: 99eb6a52ca0b0a8f54f8c4e6e67ae2c1e0ca4eb6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ stdenv, fetchurl, curl, jansson, perl }:

stdenv.mkDerivation rec {
  pname = "cpuminer";
  version = "2.5.0";

  src = fetchurl {
    url = "mirror://sourceforge/cpuminer/pooler-${pname}-${version}.tar.gz";
    sha256 = "1xalrfrk5hvh1jh9kbqhib2an82ypd46vl9glaxhz3rbjld7c5pa";
  };

  patchPhase = if stdenv.cc.isClang then "${perl}/bin/perl ./nomacro.pl" else null;

  buildInputs = [ curl jansson ];

  configureFlags = [ "CFLAGS=-O3" ];

  meta = with stdenv.lib; {
    homepage = "https://github.com/pooler/cpuminer";
    description = "CPU miner for Litecoin and Bitcoin";
    license = licenses.gpl2;
    platforms = platforms.all;
    maintainers = with maintainers; [ pSub ];
  };
}