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:
parent
b5dbfb6008
commit
3ed95b14e2
2 changed files with 4 additions and 7 deletions
|
@ -6,7 +6,6 @@
|
||||||
, ncurses
|
, ncurses
|
||||||
, zlib
|
, zlib
|
||||||
, ffmpeg
|
, ffmpeg
|
||||||
, readline
|
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, lib
|
, lib
|
||||||
, multimediaSupport ? true
|
, multimediaSupport ? true
|
||||||
|
@ -14,20 +13,20 @@
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "notcurses";
|
pname = "notcurses";
|
||||||
version = "2.4.2";
|
version = "2.4.8";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "dankamongmen";
|
owner = "dankamongmen";
|
||||||
repo = "notcurses";
|
repo = "notcurses";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-EtHyxnTH2bVoVnWB9wvmF/nCdecvL1TTiVRaajFVC/0=";
|
sha256 = "sha256-mVSToryo7+zW1mow8eJT8GrXYlGe/BeSheJtJDKAgzo=";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = [ "out" "dev" ];
|
outputs = [ "out" "dev" ];
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake pkg-config pandoc ];
|
nativeBuildInputs = [ cmake pkg-config pandoc ];
|
||||||
|
|
||||||
buildInputs = [ libunistring ncurses readline zlib ]
|
buildInputs = [ libunistring ncurses zlib ]
|
||||||
++ lib.optional multimediaSupport ffmpeg;
|
++ lib.optional multimediaSupport ffmpeg;
|
||||||
|
|
||||||
cmakeFlags = [ "-DUSE_QRCODEGEN=OFF" ]
|
cmakeFlags = [ "-DUSE_QRCODEGEN=OFF" ]
|
||||||
|
|
|
@ -18579,9 +18579,7 @@ with pkgs;
|
||||||
|
|
||||||
notify-sharp = callPackage ../development/libraries/notify-sharp { };
|
notify-sharp = callPackage ../development/libraries/notify-sharp { };
|
||||||
|
|
||||||
notcurses = callPackage ../development/libraries/notcurses {
|
notcurses = callPackage ../development/libraries/notcurses { };
|
||||||
readline = readline81;
|
|
||||||
};
|
|
||||||
|
|
||||||
ncurses5 = ncurses.override {
|
ncurses5 = ncurses.override {
|
||||||
abiVersion = "5";
|
abiVersion = "5";
|
||||||
|
|
Loading…
Reference in a new issue