nixpkgs/pkgs/development/libraries/wxwidgets/3.0/mac.nix

70 lines
2.2 KiB
Nix
Raw Normal View History

{ stdenv, fetchzip, expat, libiconv, libjpeg, libpng, libtiff, zlib
2016-12-10 17:57:09 +00:00
# darwin only attributes
2019-06-19 20:38:09 +01:00
, derez, rez, setfile
2016-12-10 17:57:09 +00:00
, AGL, Cocoa, Kernel
}:
stdenv.mkDerivation rec {
2018-10-25 00:15:54 +01:00
version = "3.0.4";
pname = "wxmac";
2018-10-25 00:15:54 +01:00
src = fetchzip {
url = "https://github.com/wxWidgets/wxWidgets/archive/v${version}.tar.gz";
sha256 = "19mqglghjjqjgz4rbybn3qdgn2cz9xc511nq1pvvli9wx2k8syl1";
};
2015-10-29 00:15:05 +00:00
buildInputs = [
expat libiconv libjpeg libpng libtiff zlib
2016-12-10 17:57:09 +00:00
derez rez setfile
2019-06-19 20:38:09 +01:00
AGL Cocoa Kernel
2015-10-29 00:15:05 +00:00
];
postPatch = ''
substituteInPlace configure --replace "-framework System" -lSystem
'';
configureFlags = [
2015-10-29 00:15:05 +00:00
"wx_cv_std_libfullpath=/var/empty"
"--with-macosx-version-min=10.7"
"--enable-unicode"
"--with-osx_cocoa"
"--enable-std_string"
"--enable-display"
"--with-opengl"
"--with-libjpeg"
"--with-libtiff"
"--without-liblzma"
"--with-libpng"
"--with-zlib"
"--enable-dnd"
"--enable-clipboard"
"--enable-webkit"
"--enable-svg"
"--enable-graphics_ctx"
"--enable-controls"
"--enable-dataviewctrl"
"--with-expat"
"--disable-precomp-headers"
"--disable-mediactrl"
];
checkPhase = ''
./wx-config --libs
'';
2015-10-29 00:15:05 +00:00
NIX_CFLAGS_COMPILE = "-Wno-undef";
doCheck = true;
enableParallelBuilding = true;
meta = with stdenv.lib; {
platforms = platforms.darwin;
license = licenses.wxWindows;
maintainers = [ maintainers.lnl7 ];
homepage = "https://www.wxwidgets.org/";
description = "a C++ library that lets developers create applications for Windows, macOS, Linux and other platforms with a single code base";
longDescription = "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.";
};
}