wxwidgets: remove darwin from inputs

+25 -15
pkgs/development/libraries/wxwidgets/0001-fix-assertion-using-hide-in-destroy.patch pkgs/development/libraries/wxwidgets/patches/0001-fix-assertion-using-hide-in-destroy.patch
+1 -1
pkgs/development/libraries/wxwidgets/2.8/default.nix
··· 106 database support, HTML viewing and printing, and much more. 107 ''; 108 license = licenses.wxWindows; 109 - maintainers = with maintainers; [ AndersonTorres ]; 110 platforms = platforms.linux; 111 }; 112
··· 106 database support, HTML viewing and printing, and much more. 107 ''; 108 license = licenses.wxWindows; 109 + maintainers = with maintainers; [ ]; 110 platforms = platforms.linux; 111 }; 112
+8 -7
pkgs/development/libraries/wxwidgets/2.9/default.nix
··· 14 , compat26 ? true 15 , unicode ? true 16 , withMesa ? lib.elem stdenv.hostPlatform.system lib.platforms.mesaPlatforms 17 - , darwin 18 }: 19 20 assert withMesa -> libGLU != null && libGL != null; 21 - let 22 - inherit (darwin.stubs) setfile; 23 - inherit (darwin.apple_sdk.frameworks) AGL Carbon Cocoa Kernel QuickTime; 24 - in 25 stdenv.mkDerivation rec { 26 pname = "wxGTK"; 27 version = "2.9.5"; ··· 35 36 patches = [ 37 # https://github.com/wxWidgets/wxWidgets/issues/17942 38 - ../0001-fix-assertion-using-hide-in-destroy.patch 39 ]; 40 41 nativeBuildInputs = [ ··· 115 database support, HTML viewing and printing, and much more. 116 ''; 117 license = licenses.wxWindows; 118 - maintainers = with maintainers; [ AndersonTorres ]; 119 platforms = platforms.darwin ++ platforms.linux; 120 badPlatforms = [ "x86_64-darwin" ]; 121 };
··· 14 , compat26 ? true 15 , unicode ? true 16 , withMesa ? lib.elem stdenv.hostPlatform.system lib.platforms.mesaPlatforms 17 + , AGL 18 + , Carbon 19 + , Cocoa 20 + , Kernel 21 + , QuickTime 22 + , setfile 23 }: 24 25 assert withMesa -> libGLU != null && libGL != null; 26 stdenv.mkDerivation rec { 27 pname = "wxGTK"; 28 version = "2.9.5"; ··· 36 37 patches = [ 38 # https://github.com/wxWidgets/wxWidgets/issues/17942 39 + ../patches/0001-fix-assertion-using-hide-in-destroy.patch 40 ]; 41 42 nativeBuildInputs = [ ··· 116 database support, HTML viewing and printing, and much more. 117 ''; 118 license = licenses.wxWindows; 119 + maintainers = with maintainers; [ ]; 120 platforms = platforms.darwin ++ platforms.linux; 121 badPlatforms = [ "x86_64-darwin" ]; 122 };
+8 -5
pkgs/development/libraries/wxwidgets/3.0/default.nix
··· 17 , unicode ? true 18 , withGtk2 ? true 19 , withWebKit ? false, webkitgtk 20 - , darwin 21 }: 22 23 assert withGtk2 -> (!withWebKit); 24 25 let 26 - inherit (darwin.stubs) setfile; 27 - inherit (darwin.apple_sdk.frameworks) AGL Carbon Cocoa Kernel QTKit; 28 inherit (gst_all_1) gstreamer gst-plugins-base; 29 gtk = if withGtk2 then gtk2 else gtk3; 30 in ··· 66 67 patches = [ 68 # https://github.com/wxWidgets/wxWidgets/issues/17942 69 - ../0001-fix-assertion-using-hide-in-destroy.patch 70 ]; 71 72 configureFlags = [ ··· 126 database support, HTML viewing and printing, and much more. 127 ''; 128 license = licenses.wxWindows; 129 - maintainers = with maintainers; [ AndersonTorres ]; 130 platforms = platforms.linux ++ platforms.darwin; 131 badPlatforms = [ "x86_64-darwin" ]; 132 };
··· 17 , unicode ? true 18 , withGtk2 ? true 19 , withWebKit ? false, webkitgtk 20 + , AGL 21 + , Carbon 22 + , Cocoa 23 + , Kernel 24 + , QTKit 25 + , setfile 26 }: 27 28 assert withGtk2 -> (!withWebKit); 29 30 let 31 inherit (gst_all_1) gstreamer gst-plugins-base; 32 gtk = if withGtk2 then gtk2 else gtk3; 33 in ··· 69 70 patches = [ 71 # https://github.com/wxWidgets/wxWidgets/issues/17942 72 + ../patches/0001-fix-assertion-using-hide-in-destroy.patch 73 ]; 74 75 configureFlags = [ ··· 129 database support, HTML viewing and printing, and much more. 130 ''; 131 license = licenses.wxWindows; 132 + maintainers = with maintainers; [ ]; 133 platforms = platforms.linux ++ platforms.darwin; 134 badPlatforms = [ "x86_64-darwin" ]; 135 };
+8 -2
pkgs/top-level/all-packages.nix
··· 20502 wxformbuilder = callPackage ../development/tools/wxformbuilder { }; 20503 20504 wxGTK = wxGTK28; 20505 - 20506 wxGTK30 = wxGTK30-gtk2; 20507 wxGTK31 = wxGTK31-gtk2; 20508 20509 wxGTK28 = callPackage ../development/libraries/wxwidgets/2.8 { }; 20510 20511 - wxGTK29 = callPackage ../development/libraries/wxwidgets/2.9 { }; 20512 20513 wxGTK30-gtk2 = callPackage ../development/libraries/wxwidgets/3.0 { 20514 withGtk2 = true; 20515 }; 20516 20517 wxGTK30-gtk3 = callPackage ../development/libraries/wxwidgets/3.0 { 20518 withGtk2 = false; 20519 }; 20520 20521 wxGTK31-gtk2 = callPackage ../development/libraries/wxwidgets/3.1 {
··· 20502 wxformbuilder = callPackage ../development/tools/wxformbuilder { }; 20503 20504 wxGTK = wxGTK28; 20505 wxGTK30 = wxGTK30-gtk2; 20506 wxGTK31 = wxGTK31-gtk2; 20507 20508 wxGTK28 = callPackage ../development/libraries/wxwidgets/2.8 { }; 20509 20510 + wxGTK29 = callPackage ../development/libraries/wxwidgets/2.9 { 20511 + inherit (darwin.stubs) setfile; 20512 + inherit (darwin.apple_sdk.frameworks) AGL Carbon Cocoa Kernel QuickTime; 20513 + }; 20514 20515 wxGTK30-gtk2 = callPackage ../development/libraries/wxwidgets/3.0 { 20516 withGtk2 = true; 20517 + inherit (darwin.stubs) setfile; 20518 + inherit (darwin.apple_sdk.frameworks) AGL Carbon Cocoa Kernel QTKit; 20519 }; 20520 20521 wxGTK30-gtk3 = callPackage ../development/libraries/wxwidgets/3.0 { 20522 withGtk2 = false; 20523 + inherit (darwin.stubs) setfile; 20524 + inherit (darwin.apple_sdk.frameworks) AGL Carbon Cocoa Kernel QTKit; 20525 }; 20526 20527 wxGTK31-gtk2 = callPackage ../development/libraries/wxwidgets/3.1 {