Merge master into staging-next

authored by github-actions[bot] and committed by GitHub 6bb65ddf b1d87c03

+18 -12
+1 -1
.github/workflows/manual-rendering.yml
··· 13 13 jobs: 14 14 check-rendering-equivalence: 15 15 permissions: 16 - issues: write # for peter-evans/create-or-update-comment to create or update comment 16 + pull-requests: write # for peter-evans/create-or-update-comment to create or update comment 17 17 if: github.repository_owner == 'NixOS' 18 18 runs-on: ubuntu-latest 19 19 steps:
+1 -1
.github/workflows/periodic-merge-24h.yml
··· 21 21 periodic-merge: 22 22 permissions: 23 23 contents: write # for devmasx/merge-branch to merge branches 24 - issues: write # for peter-evans/create-or-update-comment to create or update comment 24 + pull-requests: write # for peter-evans/create-or-update-comment to create or update comment 25 25 if: github.repository_owner == 'NixOS' 26 26 runs-on: ubuntu-latest 27 27 strategy:
+1 -1
.github/workflows/periodic-merge-6h.yml
··· 21 21 periodic-merge: 22 22 permissions: 23 23 contents: write # for devmasx/merge-branch to merge branches 24 - issues: write # for peter-evans/create-or-update-comment to create or update comment 24 + pull-requests: write # for peter-evans/create-or-update-comment to create or update comment 25 25 if: github.repository_owner == 'NixOS' 26 26 runs-on: ubuntu-latest 27 27 strategy:
+1 -2
.github/workflows/update-terraform-providers.yml
··· 12 12 tf-providers: 13 13 permissions: 14 14 contents: write # for peter-evans/create-pull-request to create branch 15 - issues: write # for peter-evans/create-or-update-comment to create or update comment 16 - pull-requests: write # for peter-evans/create-pull-request to create a PR 15 + pull-requests: write # for peter-evans/create-pull-request to create a PR, for peter-evans/create-or-update-comment to create or update comment 17 16 if: github.repository_owner == 'NixOS' && github.ref == 'refs/heads/master' # ensure workflow_dispatch only runs on master 18 17 runs-on: ubuntu-latest 19 18 steps:
+3
pkgs/applications/networking/instant-messengers/baresip/default.nix
··· 8 8 , pkg-config 9 9 , gst_all_1 10 10 , cairo 11 + , gtk3 11 12 , mpg123 12 13 , alsa-lib 13 14 , SDL2 ··· 42 43 libre 43 44 librem 44 45 cairo 46 + gtk3 45 47 mpg123 46 48 alsa-lib 47 49 SDL2 ··· 75 77 "USE_FFMPEG=1" 76 78 "USE_GSM=1" 77 79 "USE_GST1=1" 80 + "USE_GTK=1" 78 81 "USE_L16=1" 79 82 "USE_MPG123=1" 80 83 "USE_OSS=1"
+2 -2
pkgs/development/interpreters/php/8.0.nix
··· 2 2 3 3 let 4 4 base = callPackage ./generic.nix (_args // { 5 - version = "8.0.22"; 6 - hash = "sha256-40KRjT7NQi8QAy3wrD/7Dhf1aPrWz44jK296ah/cPJw="; 5 + version = "8.0.23"; 6 + hash = "sha256-FBLbRoAKRc7Td8KJLsYmGzxBLxPcEzv8mYz7LxR7QM8="; 7 7 }); 8 8 9 9 in
+2 -2
pkgs/development/interpreters/php/8.1.nix
··· 2 2 3 3 let 4 4 base = callPackage ./generic.nix (_args // { 5 - version = "8.1.9"; 6 - hash = "sha256-nrsOLlcdtv1ZMEKNyy0Z7T4FAzjsHxNHwoLK6S/Ahv8="; 5 + version = "8.1.10"; 6 + hash = "sha256-LejgQCKF98Voh97+ZRkiMIre1YumC+/PO3dyAgnjHxA="; 7 7 }); 8 8 9 9 in
+7 -3
pkgs/development/libraries/libvirt/default.nix
··· 147 147 sed -i '/virnetdaemontest/d' tests/meson.build 148 148 ''; 149 149 150 + strictDeps = true; 151 + 150 152 nativeBuildInputs = [ 151 - meson 153 + meson # needs to be first 152 154 153 155 cmake 154 156 docutils 157 + libxml2 # for xmllint 158 + libxslt # for xsltproc 155 159 makeWrapper 156 160 ninja 161 + perl 157 162 pkg-config 163 + util-linux # for mount 158 164 ] 159 165 ++ optional (!isDarwin) rpcsvc-proto 160 166 # NOTE: needed for rpcgen ··· 171 177 libpcap 172 178 libtasn1 173 179 libxml2 174 - libxslt 175 - perl 176 180 perlPackages.XMLXPath 177 181 pkg-config 178 182 python3