dashpay: 0.12.055 -> 0.12.1.3 (#23761)
- fixed mistype - Cosmetic change; camelCase - removed gui option, causes build issue - cmake flag issue fixed
This commit is contained in:
parent
575cf2e17f
commit
736ee61442
@ -1,25 +1,35 @@
|
|||||||
{ fetchzip, stdenv, pkgconfig, autoreconfHook
|
{ fetchFromGitHub, stdenv, pkgconfig, autoreconfHook
|
||||||
, openssl, db48, boost, zlib, miniupnpc
|
, openssl, db48, boost, zlib, miniupnpc
|
||||||
, qt4, qrencode, glib, protobuf, yasm
|
, qrencode, glib, protobuf, yasm, libevent
|
||||||
, utillinux }:
|
, utillinux
|
||||||
|
, enable_Upnp ? false
|
||||||
|
, disable_Wallet ? false
|
||||||
|
, disable_Daemon ? false }:
|
||||||
|
|
||||||
with stdenv.lib;
|
with stdenv.lib;
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
name = "dashpay-${version}";
|
||||||
|
version = "0.12.1.3";
|
||||||
|
|
||||||
name = "dashpay-${meta.version}";
|
src = fetchFromGitHub {
|
||||||
|
owner = "dashpay";
|
||||||
src = fetchzip {
|
repo= "dash";
|
||||||
url = "https://github.com/dashpay/dash/archive/v${meta.version}.tar.gz";
|
rev = "v${version}";
|
||||||
sha256 = "19bk7cviy3n2dpj4kr3i6i0i3ac2l5ri8ln1a51nd3n90k016wnx";
|
sha256 = "0h0fxhh30wy5vp06l1mkswhz565qs6j9y0dm84fmn28rdfvhv2aj";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ pkgconfig autoreconfHook glib openssl db48 yasm
|
nativeBuildInputs = [ pkgconfig autoreconfHook ];
|
||||||
boost zlib miniupnpc protobuf qt4 qrencode utillinux ];
|
buildInputs = [ glib openssl db48 yasm boost zlib libevent
|
||||||
|
miniupnpc protobuf qrencode utillinux ];
|
||||||
|
|
||||||
|
|
||||||
configureFlags = [ "--with-boost-libdir=${boost.out}/lib" ];
|
configureFlags = [ "--with-boost-libdir=${boost.out}/lib --with-gui=no" ]
|
||||||
|
++ optional enable_Upnp "--enable-upnp-default"
|
||||||
|
++ optional disable_Wallet "--disable-wallet"
|
||||||
|
++ optional disable_Daemon "--disable-daemon"
|
||||||
|
;
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = {
|
||||||
version = "0.12.0.55";
|
|
||||||
description = "A decentralized key/value registration and transfer system";
|
description = "A decentralized key/value registration and transfer system";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
Dash (DASH) is an open sourced, privacy-centric digital currency
|
Dash (DASH) is an open sourced, privacy-centric digital currency
|
||||||
|
Loading…
x
Reference in New Issue
Block a user