Files
Ihar HrachyshkaandWolfgang Walther 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

67 lines
1.3 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
pkg-config,
libtool,
perl,
libtermkey,
unibilium,
}:
let
version = "0.4.5";
in
stdenv.mkDerivation {
pname = "libtickit";
inherit version;
src = fetchFromGitHub {
owner = "leonerd";
repo = "libtickit";
rev = "v${version}";
hash = "sha256-q8JMNFxmnyOiUso4nXLZjJIBFYR/EF6g45lxVeY0f1s=";
};
patches = [
# Disabled on darwin, since test assumes TERM=linux
./001-skip-test-18term-builder-on-macos.patch
];
nativeBuildInputs = [
pkg-config
libtool
];
buildInputs = [
libtermkey
unibilium
];
nativeCheckInputs = [ perl ];
makeFlags = [
"LIBTOOL=${lib.getExe libtool}"
];
installFlags = [
"PREFIX=${placeholder "out"}"
];
enableParallelBuilding = true;
doCheck = true;
meta = {
description = "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 = lib.licenses.mit;
maintainers = with lib.maintainers; [ onemoresuza ];
platforms = lib.platforms.unix;
};
}