Merge pull request #279043 from wegank/wxmsw-drop

windows.wxMSW: drop

authored by Weijia Wang and committed by GitHub 68fd0224 afb87a92

-41
-2
pkgs/os-specific/windows/default.nix
··· 45 45 46 46 pthreads = callPackage ./pthread-w32 { }; 47 47 48 - wxMSW = callPackage ./wxMSW-2.8 { }; 49 - 50 48 libgnurx = callPackage ./libgnurx { }; 51 49 })
-38
pkgs/os-specific/windows/wxMSW-2.8/default.nix
··· 1 - { lib, stdenv, fetchurl, compat24 ? false, compat26 ? true, unicode ? true }: 2 - 3 - stdenv.mkDerivation rec { 4 - pname = "wxMSW"; 5 - version = "2.8.11"; 6 - 7 - src = fetchurl { 8 - url = "mirror://sourceforge/wxwindows/wxWidgets-${version}.tar.gz"; 9 - sha256 = "0icxd21g18d42n1ygshkpw0jnflm03iqki6r623pb5hhd7fm2ksj"; 10 - }; 11 - 12 - configureFlags = [ 13 - (if compat24 then "--enable-compat24" else "--disable-compat24") 14 - (if compat26 then "--enable-compat26" else "--disable-compat26") 15 - "--disable-precomp-headers" 16 - (lib.optionalString unicode "--enable-unicode") 17 - "--with-opengl" 18 - ]; 19 - 20 - preConfigure = " 21 - substituteInPlace configure --replace /usr /no-such-path 22 - "; 23 - 24 - postBuild = "(cd contrib/src && make)"; 25 - 26 - postInstall = " 27 - (cd contrib/src && make install) 28 - (cd $out/include && ln -s wx-*/* .) 29 - "; 30 - 31 - passthru = { inherit compat24 compat26 unicode; }; 32 - 33 - meta = { 34 - platforms = lib.platforms.windows; 35 - 36 - broken = true; 37 - }; 38 - }
-1
pkgs/top-level/release-cross.nix
··· 66 66 libffi = nativePlatforms; 67 67 libtool = nativePlatforms; 68 68 libunistring = nativePlatforms; 69 - windows.wxMSW = nativePlatforms; 70 69 windows.mingw_w64_pthreads = nativePlatforms; 71 70 }; 72 71