cpuminer: update from 2.4.1 to 2.4.2
This commit is contained in:
parent
526a777ee6
commit
314c6847aa
|
@ -2,21 +2,22 @@
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "cpuminer-${version}";
|
name = "cpuminer-${version}";
|
||||||
version = "2.4.1";
|
version = "2.4.2";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://sourceforge/cpuminer/pooler-${name}.tar.gz";
|
url = "mirror://sourceforge/cpuminer/pooler-${name}.tar.gz";
|
||||||
sha256 = "0grj0swh1q3c3bj3yxji80yhxb09yz62x1n5h8z7c3azq4rrv2w1";
|
sha256 = "1ds5yfxf25pd8y5z5gh689qb80m4dqw2dy3yx87hibnprlaiym0n";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ curl jansson ];
|
buildInputs = [ curl jansson ];
|
||||||
|
|
||||||
configureFlags = [ "CFLAGS=-O3" ];
|
configureFlags = [ "CFLAGS=-O3" ];
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
homepage = https://github.com/pooler/cpuminer;
|
homepage = https://github.com/pooler/cpuminer;
|
||||||
description = "CPU miner for Litecoin and Bitcoin";
|
description = "CPU miner for Litecoin and Bitcoin";
|
||||||
license = stdenv.lib.licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
platforms = stdenv.lib.platforms.all;
|
platforms = platforms.all;
|
||||||
|
maintainers = with maintainers; [ pSub ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue