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>
This commit is contained in:
nick black 2021-10-27 05:03:50 -04:00 committed by GitHub
parent b5dbfb6008
commit 3ed95b14e2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 7 deletions

View file

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

View file

@ -18579,9 +18579,7 @@ with pkgs;
notify-sharp = callPackage ../development/libraries/notify-sharp { };
notcurses = callPackage ../development/libraries/notcurses {
readline = readline81;
};
notcurses = callPackage ../development/libraries/notcurses { };
ncurses5 = ncurses.override {
abiVersion = "5";