···773773 </listitem>
774774 <listitem>
775775 <para>
776776+ <literal>pkgs._7zz</literal> is now correctly licensed as
777777+ LGPL3+ and BSD3 with optional unfree unRAR licensed code
778778+ </para>
779779+ </listitem>
780780+ <listitem>
781781+ <para>
776782 <literal>tilp2</literal> was removed together with its module
777783 </para>
778784 </listitem>
+2
nixos/doc/manual/release-notes/rl-2205.section.md
···308308309309- `pkgs.docbookrx` was removed since it's unmaintained
310310311311+- `pkgs._7zz` is now correctly licensed as LGPL3+ and BSD3 with optional unfree unRAR licensed code
312312+311313- `tilp2` was removed together with its module
312314313315- The F-PROT antivirus (`fprot` package) and its service module were removed because it
+1-1
pkgs/applications/misc/abook/default.nix
···2525 description = "Text-based addressbook program designed to use with mutt mail client";
2626 license = lib.licenses.gpl2;
2727 maintainers = [ lib.maintainers.edwtjo ];
2828- platforms = with lib.platforms; linux;
2828+ platforms = with lib.platforms; unix;
2929 };
3030}
···4545 "riscv64" = "riscv64";
4646 "s390x" = "s390x";
4747 "powerpc64le" = "ppc64le";
4848- }.${platform.parsed.cpu.name} or (throw "Unsupported system");
4848+ "mips64el" = "mips64le";
4949+ }.${platform.parsed.cpu.name} or (throw "Unsupported system: ${platform.parsed.cpu.name}");
49505051 # We need a target compiler which is still runnable at build time,
5152 # to handle the cross-building case where build != host == target
+2-1
pkgs/development/compilers/go/1.17.nix
···4545 "riscv64" = "riscv64";
4646 "s390x" = "s390x";
4747 "powerpc64le" = "ppc64le";
4848- }.${platform.parsed.cpu.name} or (throw "Unsupported system");
4848+ "mips64el" = "mips64le";
4949+ }.${platform.parsed.cpu.name} or (throw "Unsupported system: ${platform.parsed.cpu.name}");
49505051 # We need a target compiler which is still runnable at build time,
5152 # to handle the cross-building case where build != host == target
+2-1
pkgs/development/compilers/go/1.18.nix
···4545 "riscv64" = "riscv64";
4646 "s390x" = "s390x";
4747 "powerpc64le" = "ppc64le";
4848- }.${platform.parsed.cpu.name} or (throw "Unsupported system");
4848+ "mips64el" = "mips64le";
4949+ }.${platform.parsed.cpu.name} or (throw "Unsupported system: ${platform.parsed.cpu.name}");
49505051 # We need a target compiler which is still runnable at build time,
5152 # to handle the cross-building case where build != host == target
···5959 "test_request_headers"
6060 "test_request_error"
6161 "test_request_basic"
6262+ ] ++ lib.optionals (stdenv.isDarwin && stdenv.isAarch64) [
6363+ # E MemoryError: Cannot allocate write+execute memory for ffi.callback().
6464+ # You might be running on a system that prevents this.
6565+ # For more information, see https://cffi.readthedocs.io/en/latest/using.html#callbacks
6666+ "test_configure_mtls_channel_with_callback"
6767+ "test_configure_mtls_channel_with_metadata"
6868+ "TestDecryptPrivateKey"
6969+ "TestMakeMutualTlsHttp"
7070+ "TestMutualTlsAdapter"
6271 ];
63726473 meta = with lib; {