bitcoin-classic: 0.11.2.cl1.b1 -> 1.2.1
This commit is contained in:
parent
39fdbbb71e
commit
a23b18cfb8
@ -1,20 +1,24 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig, autoreconfHook, openssl, db48, boost
|
{ stdenv, fetchFromGitHub, pkgconfig, autoreconfHook, openssl, db48, boost
|
||||||
, zlib, miniupnpc, qt4, utillinux, protobuf, qrencode
|
, zlib, miniupnpc, qt4, utillinux, protobuf, qrencode, libevent
|
||||||
, withGui }:
|
, withGui }:
|
||||||
|
|
||||||
with stdenv.lib;
|
with stdenv.lib;
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
|
||||||
name = "bitcoin" + (toString (optional (!withGui) "d")) + "-classic-" + version;
|
name = "bitcoin" + (toString (optional (!withGui) "d")) + "-classic-" + version;
|
||||||
version = "0.11.2.cl1.b1";
|
version = "1.2.1";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "https://github.com/bitcoinclassic/bitcoinclassic/archive/v${version}.tar.gz";
|
owner = "bitcoinclassic";
|
||||||
sha256 = "1szsnx5aijk3hx7qkqzbqsr0basg8ydwp20mh3bhnf4ljryy2049";
|
repo = "bitcoinclassic";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0ykblw6mb8bh2pa50iqgc5f07mmsz4m3yajsphqgiv5n2fwmkzng";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ pkgconfig autoreconfHook openssl db48 boost zlib
|
nativeBuildInputs = [ pkgconfig autoreconfHook ];
|
||||||
miniupnpc utillinux protobuf ]
|
buildInputs = [ openssl db48 boost zlib
|
||||||
|
miniupnpc utillinux protobuf libevent ]
|
||||||
++ optionals withGui [ qt4 qrencode ];
|
++ optionals withGui [ qt4 qrencode ];
|
||||||
|
|
||||||
configureFlags = [ "--with-boost-libdir=${boost.out}/lib" ]
|
configureFlags = [ "--with-boost-libdir=${boost.out}/lib" ]
|
||||||
@ -35,7 +39,7 @@ stdenv.mkDerivation rec {
|
|||||||
continue to release updates that are in line with Satoshi’s whitepaper &
|
continue to release updates that are in line with Satoshi’s whitepaper &
|
||||||
vision, and are agreed upon by the community.
|
vision, and are agreed upon by the community.
|
||||||
'';
|
'';
|
||||||
homepage = "https://bitcoinclassic.com/";
|
homepage = https://bitcoinclassic.com/;
|
||||||
maintainers = with maintainers; [ jefdaj ];
|
maintainers = with maintainers; [ jefdaj ];
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user