summary refs log tree commit diff
path: root/pkgs/development/libraries/wxwidgets
diff options
context:
space:
mode:
authorDaiderd Jordan <daiderd@gmail.com>2019-06-19 21:38:09 +0200
committerDaiderd Jordan <daiderd@gmail.com>2019-07-03 22:20:18 +0200
commitc558a74a1bde7eda118b2841b67ea19f5239092d (patch)
tree5378d7f8afb98aa12cb3c7f5599a0a2e85f58ad5 /pkgs/development/libraries/wxwidgets
parent28f6abd7b3f8f4430db89113868017b60e4e6a40 (diff)
downloadnixpkgs-c558a74a1bde7eda118b2841b67ea19f5239092d.tar
nixpkgs-c558a74a1bde7eda118b2841b67ea19f5239092d.tar.gz
nixpkgs-c558a74a1bde7eda118b2841b67ea19f5239092d.tar.bz2
nixpkgs-c558a74a1bde7eda118b2841b67ea19f5239092d.tar.lz
nixpkgs-c558a74a1bde7eda118b2841b67ea19f5239092d.tar.xz
nixpkgs-c558a74a1bde7eda118b2841b67ea19f5239092d.tar.zst
nixpkgs-c558a74a1bde7eda118b2841b67ea19f5239092d.zip
wxmac: fix build
Diffstat (limited to 'pkgs/development/libraries/wxwidgets')
-rw-r--r--pkgs/development/libraries/wxwidgets/3.0/mac.nix11
1 files changed, 2 insertions, 9 deletions
diff --git a/pkgs/development/libraries/wxwidgets/3.0/mac.nix b/pkgs/development/libraries/wxwidgets/3.0/mac.nix
index 7a32aba24ff..cbe8bd8ac5e 100644
--- a/pkgs/development/libraries/wxwidgets/3.0/mac.nix
+++ b/pkgs/development/libraries/wxwidgets/3.0/mac.nix
@@ -1,6 +1,6 @@
 { stdenv, fetchzip, expat, libiconv, libjpeg, libpng, libtiff, zlib
 # darwin only attributes
-, cf-private, derez, rez, setfile
+, derez, rez, setfile
 , AGL, Cocoa, Kernel
 }:
 
@@ -16,15 +16,9 @@ stdenv.mkDerivation rec {
   buildInputs = [
     expat libiconv libjpeg libpng libtiff zlib
     derez rez setfile
-    Cocoa Kernel
-
-    # Needed for CFURLGetFSRef, etc. which have deen deprecated
-    # since 10.9 and are not part of swift-corelibs CoreFoundation.
-    cf-private
+    AGL Cocoa Kernel
   ];
 
-  propagatedBuildInputs = [ AGL ];
-
   postPatch = ''
     substituteInPlace configure --replace "-framework System" -lSystem
   '';
@@ -71,6 +65,5 @@ stdenv.mkDerivation rec {
     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.";
-    broken = true;
   };
 }