···773 </listitem>
774 <listitem>
775 <para>
000000776 <literal>tilp2</literal> was removed together with its module
777 </para>
778 </listitem>
···773 </listitem>
774 <listitem>
775 <para>
776+ <literal>pkgs._7zz</literal> is now correctly licensed as
777+ LGPL3+ and BSD3 with optional unfree unRAR licensed code
778+ </para>
779+ </listitem>
780+ <listitem>
781+ <para>
782 <literal>tilp2</literal> was removed together with its module
783 </para>
784 </listitem>
+2
nixos/doc/manual/release-notes/rl-2205.section.md
···308309- `pkgs.docbookrx` was removed since it's unmaintained
31000311- `tilp2` was removed together with its module
312313- The F-PROT antivirus (`fprot` package) and its service module were removed because it
···308309- `pkgs.docbookrx` was removed since it's unmaintained
310311+- `pkgs._7zz` is now correctly licensed as LGPL3+ and BSD3 with optional unfree unRAR licensed code
312+313- `tilp2` was removed together with its module
314315- The F-PROT antivirus (`fprot` package) and its service module were removed because it
+1-1
pkgs/applications/misc/abook/default.nix
···25 description = "Text-based addressbook program designed to use with mutt mail client";
26 license = lib.licenses.gpl2;
27 maintainers = [ lib.maintainers.edwtjo ];
28- platforms = with lib.platforms; linux;
29 };
30}
···25 description = "Text-based addressbook program designed to use with mutt mail client";
26 license = lib.licenses.gpl2;
27 maintainers = [ lib.maintainers.edwtjo ];
28+ platforms = with lib.platforms; unix;
29 };
30}
···45 "riscv64" = "riscv64";
46 "s390x" = "s390x";
47 "powerpc64le" = "ppc64le";
48- }.${platform.parsed.cpu.name} or (throw "Unsupported system");
04950 # We need a target compiler which is still runnable at build time,
51 # to handle the cross-building case where build != host == target
···45 "riscv64" = "riscv64";
46 "s390x" = "s390x";
47 "powerpc64le" = "ppc64le";
48+ "mips64el" = "mips64le";
49+ }.${platform.parsed.cpu.name} or (throw "Unsupported system: ${platform.parsed.cpu.name}");
5051 # We need a target compiler which is still runnable at build time,
52 # to handle the cross-building case where build != host == target
+2-1
pkgs/development/compilers/go/1.17.nix
···45 "riscv64" = "riscv64";
46 "s390x" = "s390x";
47 "powerpc64le" = "ppc64le";
48- }.${platform.parsed.cpu.name} or (throw "Unsupported system");
04950 # We need a target compiler which is still runnable at build time,
51 # to handle the cross-building case where build != host == target
···45 "riscv64" = "riscv64";
46 "s390x" = "s390x";
47 "powerpc64le" = "ppc64le";
48+ "mips64el" = "mips64le";
49+ }.${platform.parsed.cpu.name} or (throw "Unsupported system: ${platform.parsed.cpu.name}");
5051 # We need a target compiler which is still runnable at build time,
52 # to handle the cross-building case where build != host == target
+2-1
pkgs/development/compilers/go/1.18.nix
···45 "riscv64" = "riscv64";
46 "s390x" = "s390x";
47 "powerpc64le" = "ppc64le";
48- }.${platform.parsed.cpu.name} or (throw "Unsupported system");
04950 # We need a target compiler which is still runnable at build time,
51 # to handle the cross-building case where build != host == target
···45 "riscv64" = "riscv64";
46 "s390x" = "s390x";
47 "powerpc64le" = "ppc64le";
48+ "mips64el" = "mips64le";
49+ }.${platform.parsed.cpu.name} or (throw "Unsupported system: ${platform.parsed.cpu.name}");
5051 # We need a target compiler which is still runnable at build time,
52 # to handle the cross-building case where build != host == target
···59 "test_request_headers"
60 "test_request_error"
61 "test_request_basic"
00000000062 ];
6364 meta = with lib; {
···59 "test_request_headers"
60 "test_request_error"
61 "test_request_basic"
62+ ] ++ lib.optionals (stdenv.isDarwin && stdenv.isAarch64) [
63+ # E MemoryError: Cannot allocate write+execute memory for ffi.callback().
64+ # You might be running on a system that prevents this.
65+ # For more information, see https://cffi.readthedocs.io/en/latest/using.html#callbacks
66+ "test_configure_mtls_channel_with_callback"
67+ "test_configure_mtls_channel_with_metadata"
68+ "TestDecryptPrivateKey"
69+ "TestMakeMutualTlsHttp"
70+ "TestMutualTlsAdapter"
71 ];
7273 meta = with lib; {