forked from mirrors/nixpkgs
wxwidgets: rename files
This commit is contained in:
parent
f4d364314b
commit
4bcf0dcf8d
|
@ -35,7 +35,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
# https://github.com/wxWidgets/wxWidgets/issues/17942
|
# https://github.com/wxWidgets/wxWidgets/issues/17942
|
||||||
../0001-fix-assertion-using-hide-in-destroy.patch
|
./0001-fix-assertion-using-hide-in-destroy.patch
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
|
@ -66,7 +66,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
# https://github.com/wxWidgets/wxWidgets/issues/17942
|
# https://github.com/wxWidgets/wxWidgets/issues/17942
|
||||||
../0001-fix-assertion-using-hide-in-destroy.patch
|
./0001-fix-assertion-using-hide-in-destroy.patch
|
||||||
];
|
];
|
||||||
|
|
||||||
configureFlags = [
|
configureFlags = [
|
|
@ -49,7 +49,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
# https://github.com/wxWidgets/wxWidgets/issues/17942
|
# https://github.com/wxWidgets/wxWidgets/issues/17942
|
||||||
../0001-fix-assertion-using-hide-in-destroy.patch
|
./0001-fix-assertion-using-hide-in-destroy.patch
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config ];
|
nativeBuildInputs = [ pkg-config ];
|
||||||
|
@ -138,13 +138,12 @@ stdenv.mkDerivation rec {
|
||||||
'';
|
'';
|
||||||
license = licenses.wxWindows;
|
license = licenses.wxWindows;
|
||||||
maintainers = with maintainers; [ AndersonTorres tfmoraes ];
|
maintainers = with maintainers; [ AndersonTorres tfmoraes ];
|
||||||
platforms = platforms.linux ++ platforms.darwin;
|
platforms = platforms.unix;
|
||||||
broken = stdenv.isDarwin; # ofBorg is failing, don't know if internal
|
badPlatforms = platforms.darwin; # ofBorg is failing, don't know if internal
|
||||||
};
|
};
|
||||||
|
|
||||||
passthru = {
|
passthru = {
|
||||||
inherit gtk;
|
inherit gtk;
|
||||||
inherit compat28 compat30 unicode;
|
inherit compat28 compat30 unicode;
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
|
@ -20544,30 +20544,17 @@ with pkgs;
|
||||||
|
|
||||||
wxGTK = wxGTK28;
|
wxGTK = wxGTK28;
|
||||||
|
|
||||||
wxGTK30 = wxGTK30-gtk2;
|
wxGTK28 = callPackage ../development/libraries/wxwidgets/wxGTK28.nix { };
|
||||||
wxGTK31 = wxGTK31-gtk2;
|
wxGTK29 = callPackage ../development/libraries/wxwidgets/wxGTK29.nix { };
|
||||||
|
wxGTK30 = callPackage ../development/libraries/wxwidgets/wxGTK30.nix { };
|
||||||
|
wxGTK31 = callPackage ../development/libraries/wxwidgets/wxGTK31.nix { };
|
||||||
|
wxmac = callPackage ../development/libraries/wxwidgets/wxmac30.nix { };
|
||||||
|
|
||||||
wxGTK28 = callPackage ../development/libraries/wxwidgets/2.8 { };
|
wxGTK30-gtk2 = wxGTK30.override { withGtk2 = true; };
|
||||||
|
wxGTK30-gtk3 = wxGTK30.override { withGtk2 = false; };
|
||||||
|
|
||||||
wxGTK29 = callPackage ../development/libraries/wxwidgets/2.9 { };
|
wxGTK31-gtk2 = wxGTK30.override { withGtk2 = true; };
|
||||||
|
wxGTK31-gtk3 = wxGTK30.override { withGtk2 = false; };
|
||||||
wxGTK30-gtk2 = callPackage ../development/libraries/wxwidgets/3.0 {
|
|
||||||
withGtk2 = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
wxGTK30-gtk3 = callPackage ../development/libraries/wxwidgets/3.0 {
|
|
||||||
withGtk2 = false;
|
|
||||||
};
|
|
||||||
|
|
||||||
wxGTK31-gtk2 = callPackage ../development/libraries/wxwidgets/3.1 {
|
|
||||||
withGtk2 = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
wxGTK31-gtk3 = callPackage ../development/libraries/wxwidgets/3.1 {
|
|
||||||
withGtk2 = false;
|
|
||||||
};
|
|
||||||
|
|
||||||
wxmac = callPackage ../development/libraries/wxwidgets/3.0/mac.nix { };
|
|
||||||
|
|
||||||
wxSVG = callPackage ../development/libraries/wxSVG {
|
wxSVG = callPackage ../development/libraries/wxSVG {
|
||||||
wxGTK = wxGTK30-gtk3;
|
wxGTK = wxGTK30-gtk3;
|
||||||
|
|
Loading…
Reference in a new issue