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
1 changed files with 5 additions and 5 deletions
pkgs/applications/altcoins/particl

View File

@ -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" ];