···11+name: "No channel PR"
22+33+on:
44+ pull_request:
55+ branches:
66+ - 'nixos-**'
77+ - 'nixpkgs-**'
88+99+jobs:
1010+ fail:
1111+ name: "This PR is is targeting a channel branch"
1212+ runs-on: ubuntu-latest
1313+ steps:
1414+ - run: |
1515+ cat <<EOF
1616+ The nixos-* and nixpkgs-* branches are pushed to by the channel
1717+ release script and should not be merged into directly.
1818+1919+ Please target the equivalent release-* branch or master instead.
2020+ EOF
2121+ exit 1
···4848 </listitem>
4949 <listitem>
5050 <para>
5151+ <link xlink:href="https://github.com/xrelkd/clipcat/">clipcat</link>,
5252+ an X11 clipboard manager written in Rust. Available at
5353+ [services.clipcat](options.html#o pt-services.clipcat.enable).
5454+ </para>
5555+ </listitem>
5656+ <listitem>
5757+ <para>
5158 <link xlink:href="https://github.com/maxmind/geoipupdate">geoipupdate</link>,
5259 a GeoIP database updater from MaxMind. Available as
5360 <link xlink:href="options.html#opt-services.geoipupdate.enable">services.geoipupdate</link>.
···535542 <para>
536543 The <literal>isabelle</literal> package has been upgraded from
537544 2020 to 2021
545545+ </para>
546546+ </listitem>
547547+ <listitem>
548548+ <para>
549549+ the <literal>mingw-64</literal> package has been upgraded from
550550+ 6.0.0 to 9.0.0
538551 </para>
539552 </listitem>
540553 </itemizedlist>
+5
nixos/doc/manual/release-notes/rl-2111.section.md
···15151616- [btrbk](https://digint.ch/btrbk/index.html), a backup tool for btrfs subvolumes, taking advantage of btrfs specific capabilities to create atomic snapshots and transfer them incrementally to your backup locations. Available as [services.btrbk](options.html#opt-services.brtbk.instances).
17171818+- [clipcat](https://github.com/xrelkd/clipcat/), an X11 clipboard manager written in Rust. Available at [services.clipcat](options.html#o
1919+pt-services.clipcat.enable).
2020+1821- [geoipupdate](https://github.com/maxmind/geoipupdate), a GeoIP database updater from MaxMind. Available as [services.geoipupdate](options.html#opt-services.geoipupdate.enable).
19222023- [Kea](https://www.isc.org/kea/), ISCs 2nd generation DHCP and DDNS server suite. Available at [services.kea](options.html#opt-services.kea).
···134137- `icingaweb2` was upgraded to a new release which requires a manual database upgrade, see [upstream changelog](https://github.com/Icinga/icingaweb2/releases/tag/v2.9.0).
135138136139- The `isabelle` package has been upgraded from 2020 to 2021
140140+141141+- the `mingw-64` package has been upgraded from 6.0.0 to 9.0.0
137142138143## Other Notable Changes {#sec-release-21.11-notable-changes}
139144
···3737 }
3838 '';
3939 description = ''
4040- Configuration for CoreRAD, see <link xlink:href="https://github.com/mdlayher/corerad/blob/master/internal/config/default.toml"/>
4040+ Configuration for CoreRAD, see <link xlink:href="https://github.com/mdlayher/corerad/blob/main/internal/config/reference.toml"/>
4141 for supported values. Ignored if configFile is set.
4242 '';
4343 };
···4141 "armv6l" = "arm";
4242 "armv7l" = "arm";
4343 "powerpc64le" = "ppc64le";
4444+ "mips" = "mips";
4445 }.${platform.parsed.cpu.name} or (throw "Unsupported system");
45464647 # We need a target compiler which is still runnable at build time,
+1
pkgs/development/compilers/go/1.15.nix
···4141 "armv6l" = "arm";
4242 "armv7l" = "arm";
4343 "powerpc64le" = "ppc64le";
4444+ "mips" = "mips";
4445 }.${platform.parsed.cpu.name} or (throw "Unsupported system");
45464647 # We need a target compiler which is still runnable at build time,
+1
pkgs/development/compilers/go/1.16.nix
···4141 "armv6l" = "arm";
4242 "armv7l" = "arm";
4343 "powerpc64le" = "ppc64le";
4444+ "mips" = "mips";
4445 }.${platform.parsed.cpu.name} or (throw "Unsupported system");
45464647 # We need a target compiler which is still runnable at build time,
···11+{stdenv, lib, fetchFromGitHub, autoreconfHook}:
22+33+stdenv.mkDerivation {
44+ pname = "lha";
55+ version = "unstable-2021-01-07";
66+77+ src = fetchFromGitHub {
88+ owner = "jca02266";
99+ repo = "lha";
1010+ rev = "03475355bc6311f7f816ea9a88fb34a0029d975b";
1111+ sha256 = "18w2x0g5yq89yxkxh1fmb05lz4hw7a3b4jmkk95gvh11mwbbr5lm";
1212+ };
1313+1414+ nativeBuildInputs = [ autoreconfHook ];
1515+1616+ meta = with lib; {
1717+ description = "LHa is an archiver and compressor using the LZSS and Huffman encoding compression algorithms";
1818+ platforms = platforms.unix;
1919+ maintainers = [ maintainers.sander ];
2020+ # Some of the original LhA code has been rewritten and the current author
2121+ # considers adopting a "true" free and open source license for it.
2222+ # However, old code is still covered by the original LHa license, which is
2323+ # not a free software license (it has additional requirements on commercial
2424+ # use).
2525+ license = licenses.unfree;
2626+ };
2727+}