Merge staging-next into staging

authored by

github-actions[bot] and committed by
GitHub
d5849352 c8a5db38

+8 -41
+1 -1
nixos/doc/manual/from_md/release-notes/rl-2205.section.xml
··· 132 132 <para> 133 133 <link xlink:href="https://frrouting.org/">FRRouting</link>, a 134 134 popular suite of Internet routing protocol daemons (BGP, BFD, 135 - OSPF, IS-IS, VVRP and others). Available as 135 + OSPF, IS-IS, VRRP and others). Available as 136 136 <link linkend="opt-services.frr.babel.enable">services.frr</link> 137 137 </para> 138 138 </listitem>
+1 -1
nixos/doc/manual/release-notes/rl-2205.section.md
··· 39 39 40 40 - [apfs](https://github.com/linux-apfs/linux-apfs-rw), a kernel module for mounting the Apple File System (APFS). 41 41 42 - - [FRRouting](https://frrouting.org/), a popular suite of Internet routing protocol daemons (BGP, BFD, OSPF, IS-IS, VVRP and others). Available as [services.frr](#opt-services.frr.babel.enable) 42 + - [FRRouting](https://frrouting.org/), a popular suite of Internet routing protocol daemons (BGP, BFD, OSPF, IS-IS, VRRP and others). Available as [services.frr](#opt-services.frr.babel.enable) 43 43 44 44 - [heisenbridge](https://github.com/hifi/heisenbridge), a bouncer-style Matrix IRC bridge. Available as [services.heisenbridge](options.html#opt-services.heisenbridge.enable). 45 45
+4 -4
pkgs/applications/emulators/rpcs3/default.nix
··· 9 9 10 10 let 11 11 # Keep these separate so the update script can regex them 12 - rpcs3GitVersion = "13327-6c096b72b"; 13 - rpcs3Version = "0.0.21-13327-6c096b72b"; 14 - rpcs3Revision = "6c096b72b5294758067a002f981563bbd618d30d"; 15 - rpcs3Sha256 = "0xmdhjskqbv02jvl43bvw0clsgh9gnahl50fr3q8lmpwpy13ldr4"; 12 + rpcs3GitVersion = "13352-e58906cb4"; 13 + rpcs3Version = "0.0.21-13352-e58906cb4"; 14 + rpcs3Revision = "e58906cb4df26c14fcade07d7c15ab432dae6882"; 15 + rpcs3Sha256 = "1bzx6af77z5l6jdgazw8x59pi2xhwkz0knynmf5kzww39m6npx0a"; 16 16 17 17 ittapi = fetchFromGitHub { 18 18 owner = "intel";
-33
pkgs/development/ocaml-modules/fiat-p256/default.nix
··· 1 - { lib, buildDunePackage, fetchurl, alcotest, asn1-combinators, benchmark 2 - , bigarray-compat, cstruct, eqaf, hex, ppx_deriving_yojson, rresult 3 - , stdlib-shims, yojson, dune-configurator }: 4 - 5 - buildDunePackage rec { 6 - pname = "fiat-p256"; 7 - version = "0.2.1"; 8 - useDune2 = true; 9 - 10 - src = fetchurl { 11 - url = "https://github.com/mirage/fiat/releases/download/v${version}/${pname}-v${version}.tbz"; 12 - sha256 = "0086h9qkvnqfm8acrxqbki54z619nj73x7f0d01v5vg2naznx7w9"; 13 - }; 14 - 15 - # Make tests compatible with alcotest 1.4.0 16 - postPatch = '' 17 - substituteInPlace test/wycheproof/test.ml --replace \ 18 - 'Printf.ksprintf Alcotest.fail' 'Printf.ksprintf (fun s -> Alcotest.fail s)' 19 - ''; 20 - 21 - buildInputs = [ dune-configurator ]; 22 - propagatedBuildInputs = [ bigarray-compat cstruct eqaf hex ]; 23 - checkInputs = [ alcotest asn1-combinators benchmark 24 - ppx_deriving_yojson rresult stdlib-shims yojson ]; 25 - doCheck = true; 26 - 27 - meta = with lib; { 28 - description = "Primitives for Elliptic Curve Cryptography taken from Fiat"; 29 - homepage = "https://github.com/mirage/fiat"; 30 - license = licenses.mit; 31 - maintainers = with maintainers; [ sternenseemann ]; 32 - }; 33 - }
+2
pkgs/os-specific/linux/systemd/default.nix
··· 209 209 (musl-patches + "/0025-Handle-__cpu_mask-usage.patch") 210 210 (musl-patches + "/0026-Handle-missing-gshadow.patch") 211 211 (musl-patches + "/0028-missing_syscall.h-Define-MIPS-ABI-defines-for-musl.patch") 212 + (musl-patches + "/0001-pass-correct-parameters-to-getdents64.patch") 213 + (musl-patches + "/0002-Add-sys-stat.h-for-S_IFDIR.patch") 212 214 (musl-patches + "/0001-Adjust-for-musl-headers.patch") 213 215 ] 214 216 );
-2
pkgs/top-level/ocaml-packages.nix
··· 413 413 inherit (pkgs) ffmpeg; 414 414 }; 415 415 416 - fiat-p256 = callPackage ../development/ocaml-modules/fiat-p256 { }; 417 - 418 416 fileutils = callPackage ../development/ocaml-modules/fileutils { }; 419 417 420 418 findlib = callPackage ../development/tools/ocaml/findlib { };