···192192 "NOINTERCEPT"
193193 ]);
194194 description = ''
195195- Options for running the command. Refer to the [sudo manual](https://www.sudo.ws/docs/man/1.9.15/sudoers.man/#Tag_Spec).
195195+ Options for running the command. Refer to the [sudo manual](https://www.sudo.ws/docs/man/1.9.17/sudoers.man/#Tag_Spec).
196196 '';
197197 default = [ ];
198198 };
···11+diff --git a/cmake-proxies/cmake-modules/dependencies/rapidjson.cmake b/cmake-proxies/cmake-modules/dependencies/rapidjson.cmake
22+index ba95962..66a96a8 100644
33+--- a/cmake-proxies/cmake-modules/dependencies/rapidjson.cmake
44++++ b/cmake-proxies/cmake-modules/dependencies/rapidjson.cmake
55+@@ -2,8 +2,11 @@
66+77+ if(NOT ${_OPT}use_rapidjson STREQUAL "off")
88+ if(NOT TARGET rapidjson::rapidjson)
99+- if(TARGET rapidjson)
1010+- add_library( rapidjson::rapidjson ALIAS rapidjson )
1111++ if(TARGET RapidJSON)
1212++ if(NOT TARGET rapidjson)
1313++ add_library(rapidjson ALIAS RapidJSON)
1414++ endif()
1515++ add_library( rapidjson::rapidjson ALIAS RapidJSON )
1616+ else()
1717+ # At least on Arch RapidJSONConfig.cmake does not define a target at all
1818+ # so we have to do it ourselves
+3-3
pkgs/by-name/aw/awscli2/package.nix
···6565in
6666py.pkgs.buildPythonApplication rec {
6767 pname = "awscli2";
6868- version = "2.27.50"; # N.B: if you change this, check if overrides are still up-to-date
6868+ version = "2.27.61"; # N.B: if you change this, check if overrides are still up-to-date
6969 pyproject = true;
70707171 src = fetchFromGitHub {
7272 owner = "aws";
7373 repo = "aws-cli";
7474 tag = version;
7575- hash = "sha256-ITiZ144YFhwuRcfhulLF0jxpp1OgznEE8frx4Yn4V+A=";
7575+ hash = "sha256-2lcPqNrGAHvPPVZIQaDbI54sQQ7OsOiMxUx6qg6WeNU=";
7676 };
77777878 postPatch = ''
···8181 --replace-fail 'awscrt==' 'awscrt>=' \
8282 --replace-fail 'distro>=1.5.0,<1.9.0' 'distro>=1.5.0' \
8383 --replace-fail 'docutils>=0.10,<0.20' 'docutils>=0.10' \
8484- --replace-fail 'prompt-toolkit>=3.0.24,<3.0.39' 'prompt-toolkit>=3.0.24' \
8484+ --replace-fail 'prompt-toolkit>=3.0.24,<3.0.52' 'prompt-toolkit>=3.0.24' \
8585 --replace-fail 'ruamel.yaml.clib>=0.2.0,<=0.2.12' 'ruamel.yaml.clib>=0.2.0' \
86868787 substituteInPlace requirements-base.txt \
···4747 # without further configuration).
4848 configureFlags = [
4949 "--with-udevrulesdir=${placeholder "out"}/lib/udev/rules.d"
5050- ''--with-udevrule="OWNER=\"root\", GROUP=\"myusergroup\", MODE=\"0660\""''
5050+ ''--with-udevrule=OWNER="root",GROUP="myusergroup",MODE="0660"''
5151 ];
52525353 meta = with lib; {
+1-2
pkgs/by-name/li/libpthread-stubs/package.nix
···3737 license = lib.licenses.x11;
3838 maintainers = [ ];
3939 pkgConfigModules = [ "pthread-stubs" ];
4040- # on these platforms according to the readme
4141- platforms = with lib.platforms; linux ++ cygwin ++ darwin ++ [ "x86_64-solaris" ];
4040+ platforms = lib.platforms.unix;
4241 };
4342})
+2-2
pkgs/by-name/li/limine/package.nix
···4242# as bootloader for various platforms and corresponding binary and helper files.
4343stdenv.mkDerivation (finalAttrs: {
4444 pname = "limine";
4545- version = "9.5.0";
4545+ version = "9.5.1";
46464747 # We don't use the Git source but the release tarball, as the source has a
4848 # `./bootstrap` script performing network access to download resources.
4949 # Packaging that in Nix is very cumbersome.
5050 src = fetchurl {
5151 url = "https://github.com/limine-bootloader/limine/releases/download/v${finalAttrs.version}/limine-${finalAttrs.version}.tar.gz";
5252- hash = "sha256-SWJ5e6/q92UyC0ea8yJAYcFNr5LreJ2qFY7hcunovEM=";
5252+ hash = "sha256-UgY8S+XGlSnO1k98JWBfSN0/IY3LANVFgJwI1kdPAcU=";
5353 };
54545555 enableParallelBuilding = true;