607b0d3e80
find . -name "*.nix" | while read fn; do sed 's^http://[a-z]*.dl.sourceforge.net/sourceforge/^mirror://sourceforge/^g' < $fn > $fn.new; mv $fn.new $fn; done svn path=/nixpkgs/trunk/; revision=9198
52 lines
1.5 KiB
Nix
52 lines
1.5 KiB
Nix
{ stdenv, fetchurl, pkgconfig, gtk, libXinerama, libSM, libXxf86vm, xf86vidmodeproto
|
|
, compat22 ? false, compat24 ? 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.4";
|
|
|
|
src = fetchurl {
|
|
url = mirror://sourceforge/wxwindows/wxGTK-2.6.4.tar.gz;
|
|
sha256 = "1yilzg9qxvdpqhhd3sby1w9pj00k7jqw0ikmwyhh5jmaqnnnrb2x";
|
|
};
|
|
|
|
buildInputs = [
|
|
pkgconfig gtk gtk.libtiff gtk.libjpeg gtk.libpng gtk.libpng.zlib
|
|
libXinerama libSM libXxf86vm xf86vidmodeproto
|
|
];
|
|
|
|
configureFlags = [
|
|
"--enable-gtk2"
|
|
(if compat22 then "--enable-compat22" else "--disable-compat22")
|
|
(if compat24 then "--enable-compat24" else "--disable-compat24")
|
|
"--disable-precomp-headers"
|
|
(if unicode then "--enable-unicode" else "")
|
|
];
|
|
|
|
# This variable is used by configure to find some dependencies.
|
|
SEARCH_INCLUDE =
|
|
"${libXinerama}/include ${libSM}/include ${libXxf86vm}/include";
|
|
|
|
# Work around a bug in configure.
|
|
NIX_CFLAGS_COMPILE = "-DHAVE_X11_XLIB_H=1";
|
|
|
|
preConfigure = "
|
|
substituteInPlace configure --replace 'SEARCH_INCLUDE=' 'DUMMY_SEARCH_INCLUDE='
|
|
substituteInPlace configure --replace /usr /no-such-path
|
|
";
|
|
|
|
postBuild = "(cd contrib/src && make)";
|
|
postInstall = "
|
|
(cd contrib/src && make install)
|
|
(cd $out/include && ln -s wx-*/* .)
|
|
";
|
|
|
|
passthru = {inherit gtk compat22 compat24 unicode;};
|
|
}
|