summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/misc
diff options
context:
space:
mode:
author0x4A6F <0x4A6F@users.noreply.github.com>2021-11-29 23:00:43 +0100
committer0x4A6F <0x4A6F@users.noreply.github.com>2021-11-30 00:28:56 +0100
commitfa6ad743e97e9955fce97ca9bb346d13a3e1f9bd (patch)
tree757e7d3fbcab0d495cfa65676e4c692ccc53a890 /pkgs/tools/misc
parent0868d2fde11018d1234a1f8bddf147f3340a70f3 (diff)
zellij: 0.20.1 -> 0.21.0
Diffstat (limited to 'pkgs/tools/misc')
-rw-r--r--pkgs/tools/misc/zellij/default.nix11
1 files changed, 8 insertions, 3 deletions
diff --git a/pkgs/tools/misc/zellij/default.nix b/pkgs/tools/misc/zellij/default.nix
index 480334514edd..edb7f183e6ba 100644
--- a/pkgs/tools/misc/zellij/default.nix
+++ b/pkgs/tools/misc/zellij/default.nix
@@ -6,20 +6,22 @@
, pkg-config
, libiconv
, openssl
+, zellij
+, testVersion
}:
rustPlatform.buildRustPackage rec {
pname = "zellij";
- version = "0.20.1";
+ version = "0.21.0";
src = fetchFromGitHub {
owner = "zellij-org";
repo = "zellij";
rev = "v${version}";
- sha256 = "sha256-VeFKUNAOhNvNAqIp4yg0dulIVC6vCvD3ClYjMg1vM1g=";
+ sha256 = "1n033qvidahpfsp4k3x30sav3asldhjlsbydb23vg0v7bxjl2c2q";
};
- cargoSha256 = "sha256-qZjyl+irC5Cj3tpUs97jLxs1UB+7E1xZKbnF3TPFhKE=";
+ cargoSha256 = "1pjmlwx966pgri58xx2zqr84wili0bzpl9gzhjdkvcx0j1f66anb";
nativeBuildInputs = [
installShellFiles
@@ -43,9 +45,12 @@ rustPlatform.buildRustPackage rec {
--zsh <($out/bin/zellij setup --generate-completion zsh)
'';
+ passthru.tests.version = testVersion { package = zellij; };
+
meta = with lib; {
description = "A terminal workspace with batteries included";
homepage = "https://zellij.dev/";
+ changelog = "https://github.com/zellij-org/zellij/blob/v${version}/Changelog.md";
license = with licenses; [ mit ];
maintainers = with maintainers; [ therealansh _0x4A6F ];
};