forked from mirrors/nixpkgs
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 {
|
||||
name = "cpuminer-${version}";
|
||||
version = "2.4.1";
|
||||
version = "2.4.2";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/cpuminer/pooler-${name}.tar.gz";
|
||||
sha256 = "0grj0swh1q3c3bj3yxji80yhxb09yz62x1n5h8z7c3azq4rrv2w1";
|
||||
sha256 = "1ds5yfxf25pd8y5z5gh689qb80m4dqw2dy3yx87hibnprlaiym0n";
|
||||
};
|
||||
|
||||
buildInputs = [ curl jansson ];
|
||||
|
||||
configureFlags = [ "CFLAGS=-O3" ];
|
||||
|
||||
meta = {
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/pooler/cpuminer;
|
||||
description = "CPU miner for Litecoin and Bitcoin";
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ pSub ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue