wxmac: 3.0.4 -> 3.0.5.1

This commit is contained in:
fricklerhandwerk 2021-01-14 09:25:06 +01:00
parent 8fcb5db84c
commit 27830c70b1
2 changed files with 4 additions and 4 deletions

View File

@ -1,11 +1,11 @@
{ stdenv, fetchzip, expat, libiconv, libjpeg, libpng, libtiff, zlib { stdenv, fetchzip, expat, libiconv, libjpeg, libpng, libtiff, zlib
# darwin only attributes # darwin only attributes
, derez, rez, setfile , derez, rez, setfile
, AGL, Cocoa, Kernel , AGL, Cocoa, Kernel, WebKit
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
version = "3.0.4"; version = "3.0.5.1";
pname = "wxmac"; pname = "wxmac";
src = fetchzip { src = fetchzip {
@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
buildInputs = [ buildInputs = [
expat libiconv libjpeg libpng libtiff zlib expat libiconv libjpeg libpng libtiff zlib
derez rez setfile derez rez setfile
AGL Cocoa Kernel AGL Cocoa Kernel WebKit
]; ];
postPatch = '' postPatch = ''

View File

@ -16883,7 +16883,7 @@ in
}; };
wxmac = callPackage ../development/libraries/wxwidgets/3.0/mac.nix { wxmac = callPackage ../development/libraries/wxwidgets/3.0/mac.nix {
inherit (darwin.apple_sdk.frameworks) AGL Cocoa Kernel; inherit (darwin.apple_sdk.frameworks) AGL Cocoa Kernel WebKit;
inherit (darwin.stubs) setfile rez derez; inherit (darwin.stubs) setfile rez derez;
}; };