Merge pull request #196129 from Atemu/mlterm-fixes

mlterm: small fixes

authored by Jörg Thalheim and committed by GitHub c1783d52 2844fd3f

+5 -2
+3
pkgs/applications/terminal-emulators/mlterm/default.nix
··· 39 39 40 40 fcitx 41 41 ibus 42 + ] ++ lib.optionals (stdenv.system != "aarch64-linux") [ 43 + # FIXME Currently broken on aarch64-linux 42 44 uim 43 45 ]; 44 46 ··· 118 120 license = licenses.bsd3; 119 121 maintainers = with maintainers; [ vrthra ramkromberg atemu ]; 120 122 platforms = with platforms; linux ++ darwin; 123 + broken = stdenv.system == "aarch64-darwin"; # https://github.com/arakiken/mlterm/issues/51 121 124 }; 122 125 }
+2 -2
pkgs/top-level/all-packages.nix
··· 1869 1869 1870 1870 microcom = callPackage ../applications/terminal-emulators/microcom { }; 1871 1871 1872 - mlterm = callPackage ../applications/terminal-emulators/mlterm { 1872 + mlterm = darwin.apple_sdk_11_0.callPackage ../applications/terminal-emulators/mlterm { 1873 1873 libssh2 = null; 1874 1874 openssl = null; 1875 - inherit (darwin.apple_sdk.frameworks) Cocoa; 1875 + inherit (darwin.apple_sdk_11_0.frameworks) Cocoa; 1876 1876 }; 1877 1877 1878 1878 mrxvt = callPackage ../applications/terminal-emulators/mrxvt { };