libtsm: use autoreconfHook

+5 -11
+4 -8
pkgs/development/libraries/libtsm/default.nix
··· 1 - { stdenv, lib, fetchurl, libxkbcommon, pkgconfig, autoconf, automake }: 1 + { stdenv, lib, fetchurl, libxkbcommon, pkgconfig, autoreconfHook }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "libtsm-3"; ··· 8 8 sha256 = "01ygwrsxfii0pngfikgqsb4fxp8n1bbs47l7hck81h9b9bc1ah8i"; 9 9 }; 10 10 11 - buildInputs = [ libxkbcommon pkgconfig ] ++ lib.optionals stdenv.isDarwin [ 12 - autoconf automake 13 - ]; 14 - 15 - preConfigure = lib.optionalString stdenv.isDarwin '' 16 - aclocal 17 - ''; 11 + buildInputs = [ libxkbcommon pkgconfig ] ++ stdenv.isDarwin [ 12 + autoreconfHook 13 + ]; 18 14 19 15 configureFlags = [ "--disable-debug" ]; 20 16
+1 -3
pkgs/top-level/all-packages.nix
··· 9229 9229 9230 9230 libtap = callPackage ../development/libraries/libtap { }; 9231 9231 9232 - libtsm = callPackage ../development/libraries/libtsm { 9233 - automake = automake114x; 9234 - }; 9232 + libtsm = callPackage ../development/libraries/libtsm { }; 9235 9233 9236 9234 libtunepimp = callPackage ../development/libraries/libtunepimp { }; 9237 9235