summary refs log tree commit diff
path: root/pkgs/development/libraries/notcurses
diff options
context:
space:
mode:
authornick black <dankamongmen@gmail.com>2021-01-19 04:35:51 -0500
committertomberek <tomberek@users.noreply.github.com>2021-02-25 18:47:17 -0500
commit6cae2af7aa04462eafcfcb9c8f7ccfa7d0c683c9 (patch)
tree247c5e30d86341c3b4d9750be24844210605d879 /pkgs/development/libraries/notcurses
parent879e1aa0083bb423bd5e5ef8a43976a59b0e6d97 (diff)
notcurses: 2.1.0 -> 2.1.5
Diffstat (limited to 'pkgs/development/libraries/notcurses')
-rw-r--r--pkgs/development/libraries/notcurses/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/libraries/notcurses/default.nix b/pkgs/development/libraries/notcurses/default.nix
index 7b9bffb9bc95a..09169019a1284 100644
--- a/pkgs/development/libraries/notcurses/default.nix
+++ b/pkgs/development/libraries/notcurses/default.nix
@@ -1,9 +1,9 @@
-{ stdenv, cmake, pkg-config, pandoc, libunistring, ncurses, ffmpeg,
+{ stdenv, cmake, pkg-config, pandoc, libunistring, ncurses, ffmpeg, readline,
   fetchFromGitHub, lib,
   multimediaSupport ? true
 }:
 let
-  version = "2.1.0";
+  version = "2.1.5";
 in
 stdenv.mkDerivation {
   pname = "notcurses";
@@ -13,7 +13,7 @@ stdenv.mkDerivation {
 
   nativeBuildInputs = [ cmake pkg-config pandoc ];
 
-  buildInputs = [ libunistring ncurses ]
+  buildInputs = [ libunistring ncurses readline ]
     ++ lib.optional multimediaSupport ffmpeg;
 
   cmakeFlags =
@@ -24,7 +24,7 @@ stdenv.mkDerivation {
     owner  = "dankamongmen";
     repo   = "notcurses";
     rev    = "v${version}";
-    sha256 = "0jvngg40c1sqf85kqy6ya0vflpxsj7j4g6cw609992rifaghxiny";
+    sha256 = "02x9a0z7mbgry2wsfai1l3jwb2zpcg4gq6a2w5d920ap2fixzy8b";
   };
 
   meta = {