Merge staging-next into staging

authored by github-actions[bot] and committed by GitHub f0365462 981d9c09

+22 -11
+7
nixos/doc/manual/from_md/release-notes/rl-2211.section.xml
··· 269 269 </listitem> 270 270 <listitem> 271 271 <para> 272 + The <literal>meta.mainProgram</literal> attribute of packages 273 + in <literal>wineWowPackages</literal> now defaults to 274 + <literal>&quot;wine64&quot;</literal>. 275 + </para> 276 + </listitem> 277 + <listitem> 278 + <para> 272 279 (Neo)Vim can not be configured with 273 280 <literal>configure.pathogen</literal> anymore to reduce 274 281 maintainance burden. Use <literal>configure.packages</literal>
+2
nixos/doc/manual/release-notes/rl-2211.section.md
··· 104 104 `python3.pkgs.influxgraph` packages, have been removed due to lack of upstream 105 105 maintenance. 106 106 107 + - The `meta.mainProgram` attribute of packages in `wineWowPackages` now defaults to `"wine64"`. 108 + 107 109 - (Neo)Vim can not be configured with `configure.pathogen` anymore to reduce maintainance burden. 108 110 Use `configure.packages` instead. 109 111
+2 -2
pkgs/applications/emulators/wine/base.nix
··· 6 6 patches, 7 7 vkd3dArches, 8 8 moltenvk, 9 - buildScript ? null, configureFlags ? [] 9 + buildScript ? null, configureFlags ? [], mainProgram ? "wine" 10 10 }: 11 11 12 12 with import ./util.nix { inherit lib; }; ··· 198 198 description = if supportFlags.waylandSupport then "An Open Source implementation of the Windows API on top of OpenGL and Unix (with experimental Wayland support)" else "An Open Source implementation of the Windows API on top of X, OpenGL, and Unix"; 199 199 platforms = if supportFlags.waylandSupport then (lib.remove "x86_64-darwin" prevPlatforms) else prevPlatforms; 200 200 maintainers = with lib.maintainers; [ avnik raskin bendlas jmc-figueira ]; 201 - mainProgram = "wine"; 201 + inherit mainProgram; 202 202 }; 203 203 })
+2
pkgs/applications/emulators/wine/packages.nix
··· 28 28 monos = [ mono ]; 29 29 configureFlags = [ "--enable-win64" ]; 30 30 platforms = [ "x86_64-linux" "x86_64-darwin" ]; 31 + mainProgram = "wine64"; 31 32 }; 32 33 wineWow = callPackage ./base.nix { 33 34 pname = "wine-wow"; ··· 40 41 monos = [ mono ]; 41 42 buildScript = ./builder-wow.sh; 42 43 platforms = [ "x86_64-linux" ]; 44 + mainProgram = "wine64"; 43 45 }; 44 46 }
+2 -2
pkgs/data/themes/orchis-theme/default.nix
··· 21 21 stdenvNoCC.mkDerivation 22 22 rec { 23 23 pname = "orchis-theme"; 24 - version = "2022-05-29"; 24 + version = "2022-07-20"; 25 25 26 26 src = fetchFromGitHub { 27 27 repo = "Orchis-theme"; 28 28 owner = "vinceliuice"; 29 29 rev = version; 30 - sha256 = "sha256-F4kqQ1B8JNo2TAdGFondAtQu5C/6os9SQ8NS2gfRCQM="; 30 + sha256 = "sha256-0T9D42XwyvIb5XeXdqXbyahVHNcSeT469lSgWSisNvA="; 31 31 }; 32 32 33 33 nativeBuildInputs = [ gtk3 sassc ];
+3 -3
pkgs/development/tools/biodiff/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "biodiff"; 5 - version = "1.0.1"; 5 + version = "1.0.3"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "8051Enthusiast"; 9 9 repo = "biodiff"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-M1hwuIe5+quxcvFAacBkxQMiQyN6lhtWA6hEi5Buoho="; 11 + sha256 = "sha256-ZIZ6XpRuqhacpvi1kf7zvMszzbF8IvWrMlxAZnJJSxE="; 12 12 }; 13 13 14 - cargoSha256 = "sha256-NIt4D2/T7Zl7rgksbQeVo6cNBt6cZkUGTJGztnp6SB0="; 14 + cargoSha256 = "sha256-/LrrHK9j6xg3J56ubM9RdkJeMn4nvpddUGMtHu2s6OE="; 15 15 16 16 meta = with lib; { 17 17 description = "Hex diff viewer using alignment algorithms from biology";
+4 -4
pkgs/os-specific/linux/kernel/zen-kernels.nix
··· 4 4 # comments with variant added for update script 5 5 # ./update-zen.py zen 6 6 zenVariant = { 7 - version = "5.18.12"; #zen 7 + version = "5.18.13"; #zen 8 8 suffix = "zen1"; #zen 9 - sha256 = "1h0qnwq967ncqv40msa94jlwqf9rw2kgrr4gwx6n8i6wn0dmxpbq"; #zen 9 + sha256 = "0m5wwiaasv49f50qxv7kydmxzfry2w6gl6489hba4i4xl7h8k8nj"; #zen 10 10 isLqx = false; 11 11 }; 12 12 # ./update-zen.py lqx 13 13 lqxVariant = { 14 - version = "5.18.12"; #lqx 14 + version = "5.18.13"; #lqx 15 15 suffix = "lqx1"; #lqx 16 - sha256 = "0bxmscx7m9fp73brj6x3d2vk5fnys7a502vllsf8dg74k0g83781"; #lqx 16 + sha256 = "12fzls0rmq2zlfdlx81f44hylmfk0j2nsxbg9s3iyakyhkwynvvk"; #lqx 17 17 isLqx = true; 18 18 }; 19 19 zenKernelsFor = { version, suffix, sha256, isLqx }: buildLinux (args // {