tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
bitcoin-xt: 0.11F -> 0.11G2
lassulus
8 years ago
f87d4ac2
077dd9fc
+4
-4
1 changed file
expand all
collapse all
unified
split
pkgs
applications
altcoins
bitcoin-xt.nix
+4
-4
pkgs/applications/altcoins/bitcoin-xt.nix
···
1
{ stdenv, fetchFromGitHub, pkgconfig, autoreconfHook, openssl, db48, boost
2
-
, zlib, miniupnpc, qt4, utillinux, protobuf, qrencode, curl
3
, withGui }:
4
5
with stdenv.lib;
6
stdenv.mkDerivation rec{
7
8
name = "bitcoin" + (toString (optional (!withGui) "d")) + "-xt-" + version;
9
-
version = "0.11F";
10
11
src = fetchFromGitHub {
12
owner = "bitcoinxt";
13
repo = "bitcoinxt";
14
rev = "v${version}";
15
-
sha256 = "13s5k9mxmlbf49p5hc546x20y5dslfp6g9hi6nw5yja5bngbwr24";
16
};
17
18
nativeBuildInputs = [ pkgconfig autoreconfHook ];
19
-
buildInputs = [ openssl db48 boost zlib
20
miniupnpc utillinux protobuf curl ]
21
++ optionals withGui [ qt4 qrencode ];
22
···
1
{ stdenv, fetchFromGitHub, pkgconfig, autoreconfHook, openssl, db48, boost
2
+
, zlib, miniupnpc, qt4, utillinux, protobuf, qrencode, curl, libevent
3
, withGui }:
4
5
with stdenv.lib;
6
stdenv.mkDerivation rec{
7
8
name = "bitcoin" + (toString (optional (!withGui) "d")) + "-xt-" + version;
9
+
version = "0.11G2";
10
11
src = fetchFromGitHub {
12
owner = "bitcoinxt";
13
repo = "bitcoinxt";
14
rev = "v${version}";
15
+
sha256 = "071rljvsabyc9j64v248qfb7zfqpfl84hpsnvlavin235zljq8qs";
16
};
17
18
nativeBuildInputs = [ pkgconfig autoreconfHook ];
19
+
buildInputs = [ openssl db48 boost zlib libevent
20
miniupnpc utillinux protobuf curl ]
21
++ optionals withGui [ qt4 qrencode ];
22