forked from mirrors/nixpkgs
GCJ 4.4: Require libart.
svn path=/nixpkgs/trunk/; revision=16490
This commit is contained in:
parent
1228ff02b7
commit
a5a5cbe93d
|
@ -8,14 +8,14 @@
|
|||
, ppl ? null, cloogppl ? null # used by the Graphite optimization framework
|
||||
, bison ? null, flex ? null
|
||||
, zlib ? null, boehmgc ? null
|
||||
, zip ? null, unzip ? null, gtk ? null, pkgconfig ? null
|
||||
, zip ? null, unzip ? null, pkgconfig ? null, gtk ? null, libart_lgpl ? null
|
||||
, enableMultilib ? false
|
||||
, name ? "gcc"
|
||||
}:
|
||||
|
||||
assert langTreelang -> bison != null && flex != null;
|
||||
assert langJava -> zip != null && unzip != null;
|
||||
assert gtk != null -> pkgconfig != null;
|
||||
assert gtk != null -> pkgconfig != null && libart_lgpl != null;
|
||||
|
||||
with stdenv.lib;
|
||||
|
||||
|
@ -71,7 +71,7 @@ stdenv.mkDerivation ({
|
|||
++ (optional (zlib != null) zlib)
|
||||
++ (optional (boehmgc != null) boehmgc)
|
||||
++ (optionals langJava [zip unzip])
|
||||
++ (optionals (gtk != null) [gtk pkgconfig])
|
||||
++ (optionals (gtk != null) [gtk pkgconfig libart_lgpl])
|
||||
;
|
||||
|
||||
configureFlags = "
|
||||
|
|
|
@ -1735,6 +1735,7 @@ let
|
|||
profiledCompiler = false;
|
||||
inherit zip unzip zlib boehmgc gettext pkgconfig;
|
||||
inherit (gtkLibs) gtk;
|
||||
inherit (gnome) libart_lgpl;
|
||||
});
|
||||
|
||||
#ghc = haskellPackages.ghc;
|
||||
|
|
Loading…
Reference in a new issue