Merge pull request #238657 from onemoresuza/libtickit

libtickit: init at 0.4.3
This commit is contained in:
Sandro
2023-07-24 22:42:23 +02:00
committed by GitHub
2 changed files with 42 additions and 0 deletions
@@ -0,0 +1,40 @@
{ lib
, stdenv
, fetchFromGitHub
, pkg-config
, libtermkey
, unibilium
, libtool
}:
stdenv.mkDerivation rec {
pname = "libtickit";
version = "0.4.3";
src = fetchFromGitHub {
owner = "leonerd";
repo = "libtickit";
rev = "v${version}";
hash = "sha256-QCrym8g5J1qwsFpU/PB8zZIWdM3YzOySknISSbQE4Sc=";
};
makeFlags = [
"PREFIX=$(out)"
"LIBTOOL=${lib.getExe libtool}"
];
nativeBuildInputs = [ pkg-config libtool ];
buildInputs = [ libtermkey unibilium ];
meta = with lib; {
description = "A terminal interface construction kit";
longDescription = ''
This library provides an abstracted mechanism for building interactive full-screen terminal
programs. It provides a full set of output drawing functions, and handles keyboard and mouse
input events.
'';
homepage = "https://www.leonerd.org.uk/code/libtickit/";
license = licenses.mit;
maintainers = with maintainers; [ onemoresuza ];
platforms = platforms.unix;
};
}
+2
View File
@@ -10146,6 +10146,8 @@ with pkgs;
libtirpc = callPackage ../development/libraries/ti-rpc { };
libtickit = callPackage ../development/libraries/libtickit { };
libtins = callPackage ../development/libraries/libtins { };
libtree = callPackage ../development/tools/misc/libtree { };