3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/wxwidgets/wxGTK31.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

157 lines
3.7 KiB
Nix
Raw Normal View History

2022-02-02 14:21:26 +00:00
{ lib
, stdenv
2020-09-30 18:23:18 +01:00
, fetchFromGitHub
, fetchurl
2022-02-02 14:21:26 +00:00
, gnome2
, gst_all_1
2020-09-30 18:23:18 +01:00
, gtk2
, gtk3
2022-02-02 14:21:26 +00:00
, libGL
, libGLU
, libSM
, libXinerama
, libXtst
, libXxf86vm
, pkg-config
2020-09-30 18:23:18 +01:00
, xorgproto
, compat28 ? false
, compat30 ? true
, unicode ? true
, withGtk2 ? (!stdenv.isDarwin)
2022-02-02 14:21:26 +00:00
, withMesa ? lib.elem stdenv.hostPlatform.system lib.platforms.mesaPlatforms
, withWebKit ? stdenv.isDarwin
, webkitgtk
2022-02-21 22:29:36 +00:00
, setfile
, AGL
, Carbon
, Cocoa
, Kernel
, QTKit
, AVFoundation
, AVKit
, WebKit
}:
2022-02-02 14:21:26 +00:00
assert withGtk2 -> (!withWebKit);
2022-02-02 14:21:26 +00:00
let
gtk = if withGtk2 then gtk2 else gtk3;
in
stdenv.mkDerivation rec {
pname = "wxwidgets";
2022-02-02 14:21:26 +00:00
version = "3.1.5";
src = fetchFromGitHub {
owner = "wxWidgets";
repo = "wxWidgets";
rev = "v${version}";
2022-02-02 14:21:26 +00:00
hash = "sha256-2zMvcva0GUDmSYK0Wk3/2Y6R3F7MgdqGBrOhmWgVA6g=";
2020-09-30 18:23:18 +01:00
fetchSubmodules = true;
};
2022-02-02 14:21:26 +00:00
patches = [
# https://github.com/wxWidgets/wxWidgets/issues/17942
2022-02-27 01:39:56 +00:00
./patches/0001-fix-assertion-using-hide-in-destroy.patch
2022-02-02 14:21:26 +00:00
];
nativeBuildInputs = [ pkg-config ];
buildInputs = [
2022-02-21 22:30:03 +00:00
gst_all_1.gst-plugins-base
gst_all_1.gstreamer
]
++ lib.optionals (!stdenv.isDarwin) [
2022-02-02 14:21:26 +00:00
gtk
2020-09-30 18:23:18 +01:00
libSM
2022-02-02 14:21:26 +00:00
libXinerama
2020-09-30 18:23:18 +01:00
libXtst
2022-02-02 14:21:26 +00:00
libXxf86vm
2020-09-30 18:23:18 +01:00
xorgproto
2022-02-02 14:21:26 +00:00
]
++ lib.optionals withGtk2 [
2022-02-21 22:30:03 +00:00
gnome2.GConf
2022-02-02 14:21:26 +00:00
]
++ lib.optional withMesa libGLU
++ lib.optional (withWebKit && !stdenv.isDarwin) webkitgtk
++ lib.optional (withWebKit && stdenv.isDarwin) WebKit
2022-02-02 14:21:26 +00:00
++ lib.optionals stdenv.isDarwin [
setfile
2022-02-02 14:21:26 +00:00
Carbon
Cocoa
Kernel
QTKit
AVFoundation
AVKit
WebKit
];
2022-02-02 14:21:26 +00:00
propagatedBuildInputs = lib.optional stdenv.isDarwin AGL;
configureFlags = [
"--disable-precomp-headers"
# This is the default option, but be explicit
"--disable-monolithic"
2022-02-02 14:21:26 +00:00
"--enable-mediactrl"
(if compat28 then "--enable-compat28" else "--disable-compat28")
(if compat30 then "--enable-compat30" else "--disable-compat30")
]
++ lib.optional unicode "--enable-unicode"
++ lib.optional withMesa "--with-opengl"
++ lib.optionals stdenv.isDarwin [
"--with-osx_cocoa"
"--with-libiconv"
2022-02-02 14:21:26 +00:00
]
++ lib.optionals withWebKit [
"--enable-webview"
"--enable-webviewwebkit"
];
SEARCH_LIB = "${libGLU.out}/lib ${libGL.out}/lib ";
2022-02-02 14:21:26 +00:00
preConfigure = ''
substituteInPlace configure --replace \
'SEARCH_INCLUDE=' 'DUMMY_SEARCH_INCLUDE='
substituteInPlace configure --replace \
'SEARCH_LIB=' 'DUMMY_SEARCH_LIB='
substituteInPlace configure --replace \
/usr /no-such-path
'' + lib.optionalString stdenv.isDarwin ''
substituteInPlace configure --replace \
'ac_cv_prog_SETFILE="/Developer/Tools/SetFile"' \
'ac_cv_prog_SETFILE="${setfile}/bin/SetFile"'
substituteInPlace configure --replace \
2022-02-02 14:21:26 +00:00
"-framework System" "-lSystem"
'';
postInstall = "
2022-02-02 14:21:26 +00:00
pushd $out/include
ln -s wx-*/* .
popd
";
enableParallelBuilding = true;
2022-02-02 14:21:26 +00:00
meta = with lib; {
homepage = "https://www.wxwidgets.org/";
2022-02-02 14:21:26 +00:00
description = "A Cross-Platform C++ GUI Library";
2020-09-30 18:23:18 +01:00
longDescription = ''
2022-02-02 14:21:26 +00:00
wxWidgets gives you a single, easy-to-use API for writing GUI applications
on multiple platforms that still utilize the native platform's controls
and utilities. Link with the appropriate library for your platform and
compiler, and your application will adopt the look and feel appropriate to
that platform. On top of great GUI functionality, wxWidgets gives you:
online help, network programming, streams, clipboard and drag and drop,
multithreading, image loading and saving in a variety of popular formats,
database support, HTML viewing and printing, and much more.
2020-09-30 18:23:18 +01:00
'';
2022-02-02 14:21:26 +00:00
license = licenses.wxWindows;
2022-03-26 19:19:00 +00:00
maintainers = with maintainers; [ tfmoraes ];
2022-02-03 04:48:58 +00:00
platforms = platforms.unix;
};
2022-02-02 14:21:26 +00:00
passthru = {
inherit gtk;
inherit compat28 compat30 unicode;
};
}