particl-core: replace utillinux with unixtools.hexdump

to make it platform agnostic
This commit is contained in:
Jörg Thalheim 2018-05-06 15:15:04 +01:00
parent fe24a0fa38
commit 71a8d0ca59

View file

@ -1,6 +1,4 @@
{ stdenv
, autoconf
, automake
, autoreconfHook
, boost
, db48
@ -14,6 +12,7 @@
, zeromq
, zlib
, withGui
, unixtools
}:
with stdenv.lib;
@ -28,9 +27,10 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [ pkgconfig autoreconfHook ];
buildInputs = [ openssl db48 boost zlib
miniupnpc libevent zeromq ]
++ optionals stdenv.isLinux [ utillinux ];
buildInputs = [
openssl db48 boost zlib miniupnpc libevent zeromq
unixtools.hexdump
];
configureFlags = [ "--with-boost-libdir=${boost.out}/lib" ];