duff, nxproxy, libxcomp: use autoreconfHook

This commit is contained in:
Tobias Geerinckx-Rice
2015-04-04 02:28:01 +02:00
parent 3d60f6401f
commit 69b0873647
3 changed files with 9 additions and 12 deletions

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchurl, autoconf, libjpeg, libpng12, libX11, zlib }:
{ stdenv, fetchurl, autoreconfHook, libjpeg, libpng12, libX11, zlib }:
let version = "3.5.0.31"; in
stdenv.mkDerivation {
@@ -17,11 +17,10 @@ stdenv.mkDerivation {
maintainers = with maintainers; [ nckx ];
};
buildInputs = [ autoconf libjpeg libpng12 libX11 zlib ];
buildInputs = [ autoreconfHook libjpeg libpng12 libX11 zlib ];
preConfigure = ''
preAutoreconf = ''
cd nxcomp/
autoconf
'';
enableParallelBuilding = true;