notcurses: 2.3.8 -> 2.4.1

Co-authored-by: Bobby Rong <rjl931189261@126.com>
This commit is contained in:
nick black 2021-08-08 20:09:29 -04:00 committed by Jörg Thalheim
parent 90d4471828
commit 173a24fc5c

View file

@ -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" ]