Skip to content

Commit

Permalink
Merge pull request NixOS#147957 from 0x4A6F/master-zellij
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperSandro2000 authored Nov 30, 2021
2 parents 27230ed + fa6ad74 commit ac9b9f8
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions pkgs/tools/misc/zellij/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 ];
};
Expand Down

0 comments on commit ac9b9f8

Please sign in to comment.