nixpkgs/pkgs/by-name/li/libtickit/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

66 lines
1.3 KiB
Nix
Raw Normal View History

2023-06-19 23:47:06 +01:00
{ lib
, stdenv
, fetchFromGitHub
, pkg-config
, libtool
, perl
2023-06-19 23:47:06 +01:00
, libtermkey
, unibilium
}:
let
2023-06-19 23:47:06 +01:00
version = "0.4.3";
in
stdenv.mkDerivation {
pname = "libtickit";
inherit version;
2023-06-19 23:47:06 +01:00
src = fetchFromGitHub {
owner = "leonerd";
repo = "libtickit";
rev = "v${version}";
hash = "sha256-QCrym8g5J1qwsFpU/PB8zZIWdM3YzOySknISSbQE4Sc=";
};
patches = [
# Disabled on darwin, since test assumes TERM=linux
./001-skip-test-18term-builder-on-macos.patch
2023-06-19 23:47:06 +01:00
];
nativeBuildInputs = [
pkg-config
libtool
];
buildInputs = [
libtermkey
unibilium
];
nativeCheckInputs = [ perl ];
makeFlags = [
"LIBTOOL=${lib.getExe libtool}"
];
installFlags = [
"PREFIX=${placeholder "out"}"
];
enableParallelBuilding = true;
doCheck = true;
2023-06-19 23:47:06 +01:00
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;
};
}