mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
libtsm: use autoreconfHook
This commit is contained in:
parent
bfdd9d2e66
commit
bd657a7293
@ -1,4 +1,4 @@
|
||||
{ stdenv, lib, fetchurl, libxkbcommon, pkgconfig, autoconf, automake }:
|
||||
{ stdenv, lib, fetchurl, libxkbcommon, pkgconfig, autoreconfHook }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libtsm-3";
|
||||
@ -8,13 +8,9 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "01ygwrsxfii0pngfikgqsb4fxp8n1bbs47l7hck81h9b9bc1ah8i";
|
||||
};
|
||||
|
||||
buildInputs = [ libxkbcommon pkgconfig ] ++ lib.optionals stdenv.isDarwin [
|
||||
autoconf automake
|
||||
];
|
||||
|
||||
preConfigure = lib.optionalString stdenv.isDarwin ''
|
||||
aclocal
|
||||
'';
|
||||
buildInputs = [ libxkbcommon pkgconfig ] ++ stdenv.isDarwin [
|
||||
autoreconfHook
|
||||
];
|
||||
|
||||
configureFlags = [ "--disable-debug" ];
|
||||
|
||||
|
@ -9229,9 +9229,7 @@ with pkgs;
|
||||
|
||||
libtap = callPackage ../development/libraries/libtap { };
|
||||
|
||||
libtsm = callPackage ../development/libraries/libtsm {
|
||||
automake = automake114x;
|
||||
};
|
||||
libtsm = callPackage ../development/libraries/libtsm { };
|
||||
|
||||
libtunepimp = callPackage ../development/libraries/libtunepimp { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user