zellijPlugins.cb: init at 0.2.0 (#544485)

This commit is contained in:
Matthias Beyer
2026-07-23 10:26:41 +00:00
committed by GitHub
2 changed files with 32 additions and 0 deletions
+6
View File
@@ -19819,6 +19819,12 @@
githubId = 364510;
name = "Tobias Geerinckx-Rice";
};
ndavd = {
email = "email@ndavd.com";
github = "ndavd";
githubId = 74260683;
name = "Nuno David";
};
ndl = {
email = "ndl@endl.ch";
github = "ndl";
@@ -0,0 +1,26 @@
{
lib,
rustPlatform,
fetchFromGitHub,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "zellij-cb";
version = "0.2.0";
src = fetchFromGitHub {
owner = "ndavd";
repo = "zellij-cb";
tag = "v${finalAttrs.version}";
hash = "sha256-wXUwtjMsSbReU6YFZkk3CUYKetvicEQChBOa8cDBzN4=";
};
cargoHash = "sha256-IUYl5lclnlfO9ftFF0KDqAle9afHzhBcl6GWOIUHRWA=";
meta = {
description = "Customizable compact bar plugin for Zellij";
homepage = "https://github.com/ndavd/zellij-cb";
changelog = "https://github.com/ndavd/zellij-cb/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.ndavd ];
};
})