zellij: 0.20.1 -> 0.21.0

This commit is contained in:
0x4A6F 2021-11-29 23:00:43 +01:00
parent 0868d2fde1
commit fa6ad743e9
No known key found for this signature in database
GPG Key ID: 8DEDBA5BE07080E1

View File

@ -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 ];
};