···11341134 the Plasma Wayland sesison.
11351135 </para>
11361136 </listitem>
11371137+ <listitem>
11381138+ <para>
11391139+ <literal>boot.kernelParams</literal> now only accepts one
11401140+ command line parameter per string. This change is aimed to
11411141+ reduce common mistakes like <quote>param = 12</quote>, which
11421142+ would be parsed as 3 parameters.
11431143+ </para>
11441144+ </listitem>
11371145 </itemizedlist>
11381146 </section>
11391147 <section xml:id="sec-release-21.11-notable-changes">
+2
nixos/doc/manual/release-notes/rl-2111.section.md
···350350- `opencv2` no longer includes the non-free libraries by default, and consequently `pfstools` no longer includes OpenCV support by default. Both packages now support an `enableUnfree` option to re-enable this functionality.
351351- `services.xserver.displayManager.defaultSession = "plasma5"` does not work anymore, instead use either `"plasma"` for the Plasma X11 session or `"plasmawayland"` for the Plasma Wayland sesison.
352352353353+- `boot.kernelParams` now only accepts one command line parameter per string. This change is aimed to reduce common mistakes like "param = 12", which would be parsed as 3 parameters.
354354+353355## Other Notable Changes {#sec-release-21.11-notable-changes}
354356355357
···1616 overrides = packageOverrides;
1717 };
18181919-plat = if stdenv.isLinux then "linux"
1919+plat = if (stdenv.isLinux && lib.versionOlder self.luaversion "5.4") then "linux"
2020+ else if (stdenv.isLinux && lib.versionAtLeast self.luaversion "5.4") then "linux-readline"
2021 else if stdenv.isDarwin then "macosx"
2122 else if stdenv.hostPlatform.isMinGW then "mingw"
2223 else if stdenv.isFreeBSD then "freebsd"
···991010buildPythonPackage rec {
1111 pname = "annexremote";
1212- version = "1.4.5";
1212+ version = "1.6.0";
13131414 # use fetchFromGitHub instead of fetchPypi because the test suite of
1515 # the package is not included into the PyPI tarball
···1717 rev = "v${version}";
1818 owner = "Lykos153";
1919 repo = "AnnexRemote";
2020- sha256 = "0r5chdk2aiqcz7z8r8m1j657cz79f6bbv96xdmhj4m5fiqn672if";
2020+ sha256 = "08myswj1vqkl4s1glykq6xn76a070nv5mxj0z8ibl6axz89bvypi";
2121 };
22222323 propagatedBuildInputs = [ future ];
···11-commit c44347b3b813e209fff537b4d46d23430727a5e2
22-Author: Bernardo Meurer <meurerbernardo@gmail.com>
33-Date: Tue Feb 25 21:27:39 2020 -0800
44-55- makefile: correctly sed paths
66-77- The default Makefile for tlp makes a mess with catenating `DESTDIR` to
88- everything, but then not actualy using the catenated (_ prefixed)
99- variables to sed it's `.in` files.
1010-1111- This patch makes sure that it correctly sets the paths, taking `DESTDIR`
1212- in account where it makes sense (e.g. /bin where we want $out/bin) but
1313- not where it doesn't (/etc/tlp.conf should be just that).
1414-1515- The reason DESTDIR is used at all, as opposed to the more appropriate
1616- PREFIX, is covered in the nix formula, and is (also) due to the Makefile
1717- being a bit "different."
1818-1919-diff --git a/Makefile b/Makefile
2020-index b5af74e..95122df 100644
2121---- a/Makefile
2222-+++ b/Makefile
2323-@@ -47,17 +47,17 @@ _TPACPIBAT = $(DESTDIR)$(TPACPIBAT)
2424-2525- SED = sed \
2626- -e "s|@TLPVER@|$(TLPVER)|g" \
2727-- -e "s|@TLP_SBIN@|$(TLP_SBIN)|g" \
2828-- -e "s|@TLP_TLIB@|$(TLP_TLIB)|g" \
2929-- -e "s|@TLP_FLIB@|$(TLP_FLIB)|g" \
3030-- -e "s|@TLP_ULIB@|$(TLP_ULIB)|g" \
3131-+ -e "s|@TLP_SBIN@|$(_SBIN)|g" \
3232-+ -e "s|@TLP_TLIB@|$(_TLIB)|g" \
3333-+ -e "s|@TLP_FLIB@|$(_FLIB)|g" \
3434-+ -e "s|@TLP_ULIB@|$(_ULIB)|g" \
3535- -e "s|@TLP_CONFUSR@|$(TLP_CONFUSR)|g" \
3636- -e "s|@TLP_CONFDIR@|$(TLP_CONFDIR)|g" \
3737-- -e "s|@TLP_CONFDEF@|$(TLP_CONFDEF)|g" \
3838-+ -e "s|@TLP_CONFDEF@|$(_CONFDEF)|g" \
3939- -e "s|@TLP_CONF@|$(TLP_CONF)|g" \
4040- -e "s|@TLP_RUN@|$(TLP_RUN)|g" \
4141- -e "s|@TLP_VAR@|$(TLP_VAR)|g" \
4242-- -e "s|@TPACPIBAT@|$(TPACPIBAT)|g"
4343-+ -e "s|@TPACPIBAT@|$(_TPACPIBAT)|g"
4444-4545- INFILES = \
4646- tlp \
···616616 osquery = throw "osquery has been removed."; # added 2019-11-24
617617 osxfuse = macfuse-stubs; # added 2021-03-20
618618 otter-browser = throw "otter-browser has been removed from nixpkgs, as it was unmaintained"; # added 2020-02-02
619619+ OVMF-CSM = throw "OVMF-CSM has been removed in favor of OVMFFull"; # added 2021-10-16
620620+ OVMF-secureBoot = throw "OVMF-secureBoot has been removed in favor of OVMFFull"; # added 2021-10-16
619621 owncloudclient = owncloud-client; # added 2016-08
620622 ocz-ssd-guru = throw "ocz-ssd-guru has been removed due to there being no source available"; # added 2021-07-12
621623 p11_kit = p11-kit; # added 2018-02-25