43 lines
763 B
Nix
43 lines
763 B
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchzip,
|
|
libtool,
|
|
pkg-config,
|
|
ncurses,
|
|
unibilium,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "libtermkey";
|
|
version = "0.22";
|
|
|
|
src = fetchzip {
|
|
url = "https://www.leonerd.org.uk/code/libtermkey/libtermkey-${finalAttrs.version}.tar.gz";
|
|
sha256 = "02dks6bj7n23lj005yq41azf95wh3hapmgc2lzyh12vigkjh67rg";
|
|
};
|
|
|
|
makeFlags = [
|
|
"PREFIX=$(out)"
|
|
"LIBTOOL=${libtool}/bin/libtool"
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
libtool
|
|
pkg-config
|
|
];
|
|
buildInputs = [
|
|
ncurses
|
|
unibilium
|
|
];
|
|
|
|
strictDeps = true;
|
|
|
|
meta = {
|
|
description = "Terminal keypress reading library";
|
|
homepage = "http://www.leonerd.org.uk/code/libtermkey";
|
|
license = lib.licenses.mit;
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
})
|