Merge staging-next into staging

This commit is contained in:
nixpkgs-ci[bot]
2026-06-09 13:02:07 +00:00
committed by GitHub
146 changed files with 1643 additions and 963 deletions
@@ -490,6 +490,38 @@ final: prev: {
}
) { };
coop-nvim = callPackage (
{
buildLuarocksPackage,
fetchFromGitHub,
fetchurl,
luaOlder,
}:
buildLuarocksPackage {
pname = "coop.nvim";
version = "1.2.0-0";
knownRockspec =
(fetchurl {
url = "mirror://luarocks/coop.nvim-1.2.0-0.rockspec";
sha256 = "1fkpdddk2c2wibk0khgmvr03in2hz8wd3gdmmfbfbpb6jybhcckg";
}).outPath;
src = fetchFromGitHub {
owner = "gregorias";
repo = "coop.nvim";
rev = "b156e541316aee14be4ae64c93ed8bddb6d03bc1";
hash = "sha256-S6iGmdakI714Im0tetgfASbe0K4/olYsjj26+WP+rSU=";
};
disabled = luaOlder "5.1";
meta = {
homepage = "https://github.com/gregorias/coop.nvim";
license = lib.licenses.gpl3Only;
description = "A Neovim plugin for structured concurrency with coroutines.";
};
}
) { };
cosmo = callPackage (
{
buildLuarocksPackage,