Skip to content

Commit

Permalink
bitcoin-xt: 0.11D -> 0.11F (#23581)
Browse files Browse the repository at this point in the history
  • Loading branch information
ndowens authored and vcunat committed Mar 20, 2017
1 parent 1c3308e commit 7a130be
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions pkgs/applications/altcoins/bitcoin-xt.nix
@@ -1,19 +1,22 @@
{ stdenv, fetchurl, pkgconfig, autoreconfHook, openssl, db48, boost
{ stdenv, fetchFromGitHub, pkgconfig, autoreconfHook, openssl, db48, boost
, zlib, miniupnpc, qt4, utillinux, protobuf, qrencode, curl
, withGui }:

with stdenv.lib;
stdenv.mkDerivation rec{

name = "bitcoin" + (toString (optional (!withGui) "d")) + "-xt-" + version;
version = "0.11D";
version = "0.11F";

src = fetchurl {
url = "https://github.com/bitcoinxt/bitcoinxt/archive/v${version}.tar.gz";
sha256 = "09r2i88wzqaj6mh66l3ngyfkm1a0dhwm5ibalj6y55wbxm9bvd36";
src = fetchFromGitHub {
owner = "bitcoinxt";
repo = "bitcoinxt";
rev = "v${version}";
sha256 = "13s5k9mxmlbf49p5hc546x20y5dslfp6g9hi6nw5yja5bngbwr24";
};

buildInputs = [ pkgconfig autoreconfHook openssl db48 boost zlib
nativeBuildInputs = [ pkgconfig autoreconfHook ];
buildInputs = [ openssl db48 boost zlib
miniupnpc utillinux protobuf curl ]
++ optionals withGui [ qt4 qrencode ];

Expand Down

0 comments on commit 7a130be

Please sign in to comment.