Files
nixpkgs/pkgs/by-name/li/libtickit/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02: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 = with lib; {
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 = licenses.mit;
maintainers = with maintainers; [ onemoresuza ];
platforms = platforms.unix;
};
}