summary refs log tree commit diff
path: root/pkgs/development/libraries/notcurses
diff options
context:
space:
mode:
authornick black <dankamongmen@gmail.com>2021-10-27 05:03:50 -0400
committerGitHub <noreply@github.com>2021-10-27 10:03:50 +0100
commit3ed95b14e289fdc6ffc13f94cf61e50500cb2140 (patch)
treea64f43363cd0c923b35896c4956a35af797f6391 /pkgs/development/libraries/notcurses
parentb5dbfb600814290141c865c9ce7c2dbfb6030ed8 (diff)
notcurses: 2.4.2 -> 2.4.8 (#143031)
* libraries/notcurses: 2.4.2 -> 2.4.8

* notcurses: fix sri hash

Co-authored-by: Jörg Thalheim <joerg@thalheim.io>
Diffstat (limited to 'pkgs/development/libraries/notcurses')
-rw-r--r--pkgs/development/libraries/notcurses/default.nix7
1 files changed, 3 insertions, 4 deletions
diff --git a/pkgs/development/libraries/notcurses/default.nix b/pkgs/development/libraries/notcurses/default.nix
index 8be2fe9fe8d4c..d15a87bade9dd 100644
--- a/pkgs/development/libraries/notcurses/default.nix
+++ b/pkgs/development/libraries/notcurses/default.nix
@@ -6,7 +6,6 @@
 , ncurses
 , zlib
 , ffmpeg
-, readline
 , fetchFromGitHub
 , lib
 , multimediaSupport ? true
@@ -14,20 +13,20 @@
 
 stdenv.mkDerivation rec {
   pname = "notcurses";
-  version = "2.4.2";
+  version = "2.4.8";
 
   src = fetchFromGitHub {
     owner = "dankamongmen";
     repo = "notcurses";
     rev = "v${version}";
-    sha256 = "sha256-EtHyxnTH2bVoVnWB9wvmF/nCdecvL1TTiVRaajFVC/0=";
+    sha256 = "sha256-mVSToryo7+zW1mow8eJT8GrXYlGe/BeSheJtJDKAgzo=";
   };
 
   outputs = [ "out" "dev" ];
 
   nativeBuildInputs = [ cmake pkg-config pandoc ];
 
-  buildInputs = [ libunistring ncurses readline zlib ]
+  buildInputs = [ libunistring ncurses zlib ]
     ++ lib.optional multimediaSupport ffmpeg;
 
   cmakeFlags = [ "-DUSE_QRCODEGEN=OFF" ]