3
0
Fork 0
forked from mirrors/nixpkgs

notcurses: 2.1.0 -> 2.1.5

This commit is contained in:
nick black 2021-01-19 04:35:51 -05:00 committed by tomberek
parent 879e1aa008
commit 6cae2af7aa
2 changed files with 7 additions and 5 deletions

View file

@ -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 = {

View file

@ -16021,7 +16021,9 @@ in
notify-sharp = callPackage ../development/libraries/notify-sharp { };
notcurses = callPackage ../development/libraries/notcurses { };
notcurses = callPackage ../development/libraries/notcurses {
readline = readline80;
};
ncurses5 = ncurses.override {
abiVersion = "5";