particl-core: replace utillinux with unixtools.hexdump
to make it platform agnostic
This commit is contained in:
parent
fe24a0fa38
commit
71a8d0ca59
pkgs/applications/altcoins/particl
|
@ -1,6 +1,4 @@
|
||||||
{ stdenv
|
{ stdenv
|
||||||
, autoconf
|
|
||||||
, automake
|
|
||||||
, autoreconfHook
|
, autoreconfHook
|
||||||
, boost
|
, boost
|
||||||
, db48
|
, db48
|
||||||
|
@ -14,6 +12,7 @@
|
||||||
, zeromq
|
, zeromq
|
||||||
, zlib
|
, zlib
|
||||||
, withGui
|
, withGui
|
||||||
|
, unixtools
|
||||||
}:
|
}:
|
||||||
|
|
||||||
with stdenv.lib;
|
with stdenv.lib;
|
||||||
|
@ -28,9 +27,10 @@ stdenv.mkDerivation rec {
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig autoreconfHook ];
|
nativeBuildInputs = [ pkgconfig autoreconfHook ];
|
||||||
buildInputs = [ openssl db48 boost zlib
|
buildInputs = [
|
||||||
miniupnpc libevent zeromq ]
|
openssl db48 boost zlib miniupnpc libevent zeromq
|
||||||
++ optionals stdenv.isLinux [ utillinux ];
|
unixtools.hexdump
|
||||||
|
];
|
||||||
|
|
||||||
configureFlags = [ "--with-boost-libdir=${boost.out}/lib" ];
|
configureFlags = [ "--with-boost-libdir=${boost.out}/lib" ];
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue