···9798Follow these steps to backport a change into a release branch in compliance with the [commit policy](https://nixos.org/nixpkgs/manual/#submitting-changes-stable-release-branches).
990000001001. Take note of the commits in which the change was introduced into `master` branch.
1012. Check out the target _release branch_, e.g. `release-21.11`. Do not use a _channel branch_ like `nixos-21.11` or `nixpkgs-21.11-darwin`.
1023. Create a branch for your change, e.g. `git checkout -b backport`.
···9798Follow these steps to backport a change into a release branch in compliance with the [commit policy](https://nixos.org/nixpkgs/manual/#submitting-changes-stable-release-branches).
99100+You can add a label such as `backport release-22.05` to a PR, so that merging it will
101+automatically create a backport (via [a GitHub Action](.github/workflows/backport.yml)).
102+This also works for PR's that have already been merged, and might take a couple of minutes to trigger.
103+104+You can also create the backport manually:
105+1061. Take note of the commits in which the change was introduced into `master` branch.
1072. Check out the target _release branch_, e.g. `release-21.11`. Do not use a _channel branch_ like `nixos-21.11` or `nixpkgs-21.11-darwin`.
1083. Create a branch for your change, e.g. `git checkout -b backport`.
···92 <itemizedlist spacing="compact">
93 <listitem>
94 <para>
95- Please remove this line when you add the first item since
96- docbook requires the section to be non-empty
0097 </para>
98 </listitem>
99 </itemizedlist>
···92 <itemizedlist spacing="compact">
93 <listitem>
94 <para>
95+ A new module was added for the Saleae Logic device family,
96+ providing the options
97+ <literal>hardware.saleae-logic.enable</literal> and
98+ <literal>hardware.saleae-logic.package</literal>.
99 </para>
100 </listitem>
101 </itemizedlist>
+2-1
nixos/doc/manual/release-notes/rl-2211.section.md
···4445## Other Notable Changes {#sec-release-22.11-notable-changes}
4647-- Please remove this line when you add the first item since docbook requires the section to be non-empty
048<!-- To avoid merge conflicts, consider adding your item at an arbitrary place in the list instead. -->
···4445## Other Notable Changes {#sec-release-22.11-notable-changes}
4647+* A new module was added for the Saleae Logic device family, providing the options `hardware.saleae-logic.enable` and `hardware.saleae-logic.package`.
48+49<!-- To avoid merge conflicts, consider adding your item at an arbitrary place in the list instead. -->
···24 ];
2526 # skips tests with external dependencies, e.g. on mysqld
27- checkFlags = [ "-short" ];
002829 meta = with lib; {
30 description = "Prometheus exporter for MySQL server metrics";
···24 ];
2526 # skips tests with external dependencies, e.g. on mysqld
27+ preCheck = ''
28+ buildFlagsArray+="-short"
29+ '';
3031 meta = with lib; {
32 description = "Prometheus exporter for MySQL server metrics";
···37 sed -i '/\(chown\|chmod\)/d' GNUmakefile
38 '';
3940- buildInputs = [ bison pam ];
04142 meta = with lib; {
43 description = "Executes the given command as another user";
···37 sed -i '/\(chown\|chmod\)/d' GNUmakefile
38 '';
3940+ nativeBuildInputs = [ bison ];
41+ buildInputs = [ pam ];
4243 meta = with lib; {
44 description = "Executes the given command as another user";