mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
Merge pull request #106993 from andir/ml2pr/notcurses-init-at-2-1-0
notcurses: init at 2.1.0
This commit is contained in:
commit
0f12442fb3
49
pkgs/development/libraries/notcurses/default.nix
Normal file
49
pkgs/development/libraries/notcurses/default.nix
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
{ stdenv, cmake, pkgconfig, pandoc, libunistring, ncurses, ffmpeg,
|
||||||
|
fetchFromGitHub, lib,
|
||||||
|
multimediaSupport ? true
|
||||||
|
}:
|
||||||
|
let
|
||||||
|
version = "2.1.0";
|
||||||
|
in
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
pname = "notcurses";
|
||||||
|
inherit version;
|
||||||
|
|
||||||
|
outputs = [ "out" "dev" ];
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake pkgconfig pandoc ];
|
||||||
|
|
||||||
|
buildInputs = [ libunistring ncurses ]
|
||||||
|
++ lib.optional multimediaSupport ffmpeg;
|
||||||
|
|
||||||
|
cmakeFlags =
|
||||||
|
[ "-DUSE_QRCODEGEN=OFF" ]
|
||||||
|
++ lib.optional (!multimediaSupport) "-DUSE_MULTIMEDIA=none";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "dankamongmen";
|
||||||
|
repo = "notcurses";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0jvngg40c1sqf85kqy6ya0vflpxsj7j4g6cw609992rifaghxiny";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "blingful TUIs and character graphics";
|
||||||
|
|
||||||
|
longDescription = ''
|
||||||
|
A library facilitating complex TUIs on modern terminal emulators,
|
||||||
|
supporting vivid colors, multimedia, and Unicode to the maximum degree
|
||||||
|
possible. Things can be done with Notcurses that simply can't be done
|
||||||
|
with NCURSES.
|
||||||
|
|
||||||
|
It is not a source-compatible X/Open Curses implementation, nor a
|
||||||
|
replacement for NCURSES on existing systems.
|
||||||
|
'';
|
||||||
|
|
||||||
|
homepage = "https://github.com/dankamongmen/notcurses";
|
||||||
|
|
||||||
|
license = lib.licenses.asl20;
|
||||||
|
platforms = lib.platforms.all;
|
||||||
|
maintainers = with lib.maintainers; [ jb55 ];
|
||||||
|
};
|
||||||
|
}
|
@ -15160,6 +15160,8 @@ in
|
|||||||
|
|
||||||
notify-sharp = callPackage ../development/libraries/notify-sharp { };
|
notify-sharp = callPackage ../development/libraries/notify-sharp { };
|
||||||
|
|
||||||
|
notcurses = callPackage ../development/libraries/notcurses { };
|
||||||
|
|
||||||
ncurses5 = ncurses.override {
|
ncurses5 = ncurses.override {
|
||||||
abiVersion = "5";
|
abiVersion = "5";
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user