Remove wxGTK-2.6
svn path=/nixpkgs/trunk/; revision=31369
This commit is contained in:
parent
d7049d1c08
commit
206d17c17f
@ -1,44 +0,0 @@
|
||||
{ stdenv, fetchurl, pkgconfig, gtk, libXinerama, libSM, libXxf86vm, xf86vidmodeproto
|
||||
, compat22 ? false, compat24 ? true, unicode ? true
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "wxGTK-2.6.4";
|
||||
|
||||
src = fetchurl {
|
||||
url = mirror://sourceforge/wxwindows/wxGTK-2.6.4.tar.gz;
|
||||
sha256 = "1yilzg9qxvdpqhhd3sby1w9pj00k7jqw0ikmwyhh5jmaqnnnrb2x";
|
||||
};
|
||||
|
||||
buildInputs = [ gtk libXinerama libSM libXxf86vm xf86vidmodeproto ];
|
||||
|
||||
buildNativeInputs = [ pkgconfig ];
|
||||
|
||||
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;};
|
||||
}
|
@ -4691,10 +4691,6 @@ let
|
||||
|
||||
wxGTK = wxGTK28;
|
||||
|
||||
wxGTK26 = callPackage ../development/libraries/wxGTK-2.6 {
|
||||
inherit (gtkLibs216) gtk;
|
||||
};
|
||||
|
||||
wxGTK28 = callPackage ../development/libraries/wxGTK-2.8 {
|
||||
inherit (gtkLibs) gtk;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user