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