nixpkgs/pkgs/development/libraries/wxGTK-2.6/default.nix
Eelco Dolstra 67818f5717 * Indent.
svn path=/nixpkgs/trunk/; revision=5677
2006-07-11 07:55:52 +00:00

31 lines
777 B
Nix

{stdenv, fetchurl, pkgconfig, gtk, libXinerama, compat22 ? true, unicode ? true}:
assert pkgconfig != null && gtk != null;
assert gtk.libtiff != null;
assert gtk.libjpeg != null;
assert gtk.libpng != null;
assert gtk.libpng.zlib != null;
stdenv.mkDerivation {
name = "wxGTK-2.6.3";
src = fetchurl {
url = http://surfnet.dl.sourceforge.net/sourceforge/wxwindows/wxGTK-2.6.3.tar.bz2;
md5 = "3cd76c3c47913e52a3175dd47239c6ec";
};
buildInputs = [
pkgconfig gtk gtk.libtiff gtk.libjpeg gtk.libpng gtk.libpng.zlib
libXinerama
];
configureFlags = [
"--enable-gtk2"
(if compat22 then "--enable-compat22" else "--disable-compat22")
"--disable-precomp-headers"
(if unicode then "--enable-unicode" else "")
];
inherit gtk compat22;
}