summary refs log tree commit diff
path: root/pkgs/development/libraries/notcurses
diff options
context:
space:
mode:
authornick black <dankamongmen@gmail.com>2021-08-08 20:09:29 -0400
committerJörg Thalheim <joerg@thalheim.io>2021-09-20 10:18:51 +0200
commit173a24fc5c9df0f3d6c09c7fdcbb6e940b3f7127 (patch)
treed228b33d2d63ff04a1300325fd95224b20833e2f /pkgs/development/libraries/notcurses
parent90d44718285feebbe2f9021e5a71dc7fda16a6e8 (diff)
notcurses: 2.3.8 -> 2.4.1
Co-authored-by: Bobby Rong <rjl931189261@126.com>
Diffstat (limited to 'pkgs/development/libraries/notcurses')
-rw-r--r--pkgs/development/libraries/notcurses/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/libraries/notcurses/default.nix b/pkgs/development/libraries/notcurses/default.nix
index a99a09a0fe69b..6d12ed6ef1bd2 100644
--- a/pkgs/development/libraries/notcurses/default.nix
+++ b/pkgs/development/libraries/notcurses/default.nix
@@ -4,6 +4,7 @@
 , pandoc
 , libunistring
 , ncurses
+, zlib
 , ffmpeg
 , readline
 , fetchFromGitHub
@@ -13,20 +14,20 @@
 
 stdenv.mkDerivation rec {
   pname = "notcurses";
-  version = "2.3.8";
+  version = "2.4.1";
 
   src = fetchFromGitHub {
     owner = "dankamongmen";
     repo = "notcurses";
     rev = "v${version}";
-    sha256 = "sha256-CTMFXTmOnBUCm0KdVNBoDT08arr01XTHdELFiTayk3E=";
+    sha256 = "sha256-Oyjdmmb+rqPgkwVJw3y4NKGPABmCZFyGFBzBJn6IEHk=";
   };
 
   outputs = [ "out" "dev" ];
 
   nativeBuildInputs = [ cmake pkg-config pandoc ];
 
-  buildInputs = [ libunistring ncurses readline ]
+  buildInputs = [ libunistring ncurses readline zlib ]
     ++ lib.optional multimediaSupport ffmpeg;
 
   cmakeFlags = [ "-DUSE_QRCODEGEN=OFF" ]