summary refs log tree commit diff
path: root/pkgs/development/libraries/hivex
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2016-01-17 23:04:40 +0000
committerVladimír Čunát <vcunat@gmail.com>2016-01-18 10:45:31 +0100
commit53b389327e34de319dc0dbda2b6bcab1a69db69d (patch)
tree04dece6a1e346ccb4563f61ec206cf03dc46e77f /pkgs/development/libraries/hivex
parent620c147ccee09d7d068fa21b2b5b94b6695993a5 (diff)
refactor to use autoreconfHook where possible
Close #12446.
Diffstat (limited to 'pkgs/development/libraries/hivex')
-rw-r--r--pkgs/development/libraries/hivex/default.nix8
1 files changed, 2 insertions, 6 deletions
diff --git a/pkgs/development/libraries/hivex/default.nix b/pkgs/development/libraries/hivex/default.nix
index e048b07a1da12..76836b69d2a8b 100644
--- a/pkgs/development/libraries/hivex/default.nix
+++ b/pkgs/development/libraries/hivex/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, pkgconfig, automake, autoconf, libtool, makeWrapper
+{ stdenv, fetchurl, pkgconfig, autoreconfHook, makeWrapper
 , perl, libxml2, IOStringy }:
 
 stdenv.mkDerivation rec {
@@ -13,14 +13,10 @@ stdenv.mkDerivation rec {
   patches = [ ./hivex-syms.patch ];
 
   buildInputs = [
-    pkgconfig automake autoconf libtool makeWrapper
+    pkgconfig autoreconfHook makeWrapper
     perl libxml2 IOStringy
   ];
 
-  preConfigure = ''
-    AUTOPOINT=true autoreconf --verbose --install 
-  '';
-
   postInstall = ''
     for bin in $out/bin/*; do
       wrapProgram "$bin" --prefix "PATH" : "$out/bin"