summary refs log tree commit diff
path: root/pkgs/tools/filesystems/duff
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-04-04 02:28:01 +0200
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-04-04 02:28:01 +0200
commit69b0873647a9378f5f46e1e1191e11ec50bbbf7d (patch)
tree6c77b151f02cb59a4380b3b073d922f50482fea0 /pkgs/tools/filesystems/duff
parent3d60f6401fe698262dfb636c506cc635b1c340dc (diff)
downloadnixpkgs-69b0873647a9378f5f46e1e1191e11ec50bbbf7d.tar
nixpkgs-69b0873647a9378f5f46e1e1191e11ec50bbbf7d.tar.gz
nixpkgs-69b0873647a9378f5f46e1e1191e11ec50bbbf7d.tar.bz2
nixpkgs-69b0873647a9378f5f46e1e1191e11ec50bbbf7d.tar.lz
nixpkgs-69b0873647a9378f5f46e1e1191e11ec50bbbf7d.tar.xz
nixpkgs-69b0873647a9378f5f46e1e1191e11ec50bbbf7d.tar.zst
nixpkgs-69b0873647a9378f5f46e1e1191e11ec50bbbf7d.zip
duff, nxproxy, libxcomp: use autoreconfHook
Diffstat (limited to 'pkgs/tools/filesystems/duff')
-rw-r--r--pkgs/tools/filesystems/duff/default.nix7
1 files changed, 3 insertions, 4 deletions
diff --git a/pkgs/tools/filesystems/duff/default.nix b/pkgs/tools/filesystems/duff/default.nix
index 894ca2ef28d..d178be0f0fa 100644
--- a/pkgs/tools/filesystems/duff/default.nix
+++ b/pkgs/tools/filesystems/duff/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, autoconf, automake, gettext }:
+{ stdenv, fetchurl, autoreconfHook, gettext }:
 
 stdenv.mkDerivation rec {
   name = "duff-${version}";
@@ -9,9 +9,9 @@ stdenv.mkDerivation rec {
     sha256 = "149dd80f9758085ed199c37aa32ad869409fa5e2c8da8a51294bd64ca886e058";
   };
 
-  buildInputs = [ autoconf automake gettext ];
+  buildInputs = [ autoreconfHook gettext ];
 
-  preConfigure = ''
+  preAutoreconf = ''
     # duff is currently badly packaged, requiring us to do extra work here that
     # should be done upstream. If that is ever fixed, this entire phase can be
     # removed along with all buildInputs.
@@ -23,7 +23,6 @@ stdenv.mkDerivation rec {
     ./gettextize
     sed 's@po/Makefile.in\( .*\)po/Makefile.in@po/Makefile.in \1@' \
       -i configure.ac
-    autoreconf -i
   '';
 
   meta = with stdenv.lib; {