Skip to content

Commit

Permalink
Merge pull request #44871 from Infinisil/fix/namecoin
Browse files Browse the repository at this point in the history
namecoin: fix build
  • Loading branch information
infinisil committed Aug 10, 2018
2 parents 2dc24c1 + 82804e5 commit b05fb31
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pkgs/applications/altcoins/namecoin.nix
@@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, openssl, boost, libevent, autoreconfHook, db4, miniupnpc, eject, pkgconfig, qt4, protobuf, libqrencode
{ stdenv, fetchFromGitHub, openssl, boost, libevent, autoreconfHook, db4, miniupnpc, eject, pkgconfig, qt4, protobuf, libqrencode, hexdump
, withGui }:

with stdenv.lib;
Expand All @@ -16,6 +16,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [
autoreconfHook
pkgconfig
hexdump
];

buildInputs = [
Expand All @@ -31,6 +32,8 @@ stdenv.mkDerivation rec {
libqrencode
];

enableParallelBuilding = true;

configureFlags = [
"--with-boost-libdir=${boost.out}/lib"
];
Expand Down

0 comments on commit b05fb31

Please sign in to comment.