mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-24 01:21:11 +00:00
zellijPlugins.cb: init at 0.2.0
This commit is contained in:
26
pkgs/by-name/ze/zellij/plugins/rust/cb.nix
Normal file
26
pkgs/by-name/ze/zellij/plugins/rust/cb.nix
Normal file
@@ -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 ];
|
||||
};
|
||||
})
|
||||
Reference in New Issue
Block a user