From 71a8d0ca59a081299aa15391a04518a35ead0b6c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= <joerg@thalheim.io>
Date: Sun, 6 May 2018 15:15:04 +0100
Subject: [PATCH] particl-core: replace utillinux with unixtools.hexdump

to make it platform agnostic
---
 pkgs/applications/altcoins/particl/particl-core.nix | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/pkgs/applications/altcoins/particl/particl-core.nix b/pkgs/applications/altcoins/particl/particl-core.nix
index c9454963b22..2524408429c 100644
--- a/pkgs/applications/altcoins/particl/particl-core.nix
+++ b/pkgs/applications/altcoins/particl/particl-core.nix
@@ -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" ];