about summary refs log tree commit diff
path: root/pkgs/tools/misc/zellij
diff options
context:
space:
mode:
authorr-vdp <ramses@well-founded.dev>2023-11-07 10:21:03 +0100
committerr-vdp <ramses@well-founded.dev>2023-11-07 10:21:03 +0100
commita5fb471c577eaf82ca1f10289df5f62d3bb05a12 (patch)
tree5c089977e217498d3f6c5d92e408882656befc7a /pkgs/tools/misc/zellij
parenta845c1b2d62614f80de711d7cecbd0688c53429e (diff)
zellij: 0.38.2 -> 0.39.0
Release notes: https://github.com/zellij-org/zellij/releases/tag/v0.39.0
Diffstat (limited to 'pkgs/tools/misc/zellij')
-rw-r--r--pkgs/tools/misc/zellij/default.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/pkgs/tools/misc/zellij/default.nix b/pkgs/tools/misc/zellij/default.nix
index 670ad866dff87..6274dae69489c 100644
--- a/pkgs/tools/misc/zellij/default.nix
+++ b/pkgs/tools/misc/zellij/default.nix
@@ -3,6 +3,7 @@
 , rustPlatform
 , stdenv
 , installShellFiles
+, perl
 , pkg-config
 , libiconv
 , openssl
@@ -15,20 +16,21 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "zellij";
-  version = "0.38.2";
+  version = "0.39.0";
 
   src = fetchFromGitHub {
     owner = "zellij-org";
     repo = "zellij";
     rev = "v${version}";
-    hash = "sha256-rq7M4g+s44j9jh5GzOjOCBr7VK3m/EQej/Qcnp67NhY=";
+    hash = "sha256-ZKtYXUNuBwQtEHTaPlptiRncFWattkkcAGGzbKalJZE=";
   };
 
-  cargoHash = "sha256-xK7lLgjVFUISo4stF6MgfgI4mT5qHuph70cyYaLYZ30=";
+  cargoHash = "sha256-4XRCXQYJaYvnIfEK2b0VuLy/HIFrafLrK9BvZMnCKpY=";
 
   nativeBuildInputs = [
     mandown
     installShellFiles
+    perl
     pkg-config
   ];