mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 22:32:58 +03:00
GCJ 4.4: Require libXtst.
svn path=/nixpkgs/trunk/; revision=16491
This commit is contained in:
parent
a5a5cbe93d
commit
86ad964255
@ -9,13 +9,15 @@
|
||||
, bison ? null, flex ? null
|
||||
, zlib ? null, boehmgc ? null
|
||||
, zip ? null, unzip ? null, pkgconfig ? null, gtk ? null, libart_lgpl ? null
|
||||
, libXtst ? null
|
||||
, enableMultilib ? false
|
||||
, name ? "gcc"
|
||||
}:
|
||||
|
||||
assert langTreelang -> bison != null && flex != null;
|
||||
assert langJava -> zip != null && unzip != null;
|
||||
assert gtk != null -> pkgconfig != null && libart_lgpl != null;
|
||||
assert gtk != null -> pkgconfig != null && libart_lgpl != null
|
||||
&& libXtst != null;
|
||||
|
||||
with stdenv.lib;
|
||||
|
||||
@ -71,7 +73,7 @@ stdenv.mkDerivation ({
|
||||
++ (optional (zlib != null) zlib)
|
||||
++ (optional (boehmgc != null) boehmgc)
|
||||
++ (optionals langJava [zip unzip])
|
||||
++ (optionals (gtk != null) [gtk pkgconfig libart_lgpl])
|
||||
++ (optionals (gtk != null) [gtk pkgconfig libart_lgpl libXtst])
|
||||
;
|
||||
|
||||
configureFlags = "
|
||||
|
@ -1736,6 +1736,7 @@ let
|
||||
inherit zip unzip zlib boehmgc gettext pkgconfig;
|
||||
inherit (gtkLibs) gtk;
|
||||
inherit (gnome) libart_lgpl;
|
||||
inherit (xlibs) libXtst;
|
||||
});
|
||||
|
||||
#ghc = haskellPackages.ghc;
|
||||
|
Loading…
Reference in New Issue
Block a user