58 lines
1.7 KiB
Nix
58 lines
1.7 KiB
Nix
{ stdenv, fetchFromGitHub, python3Packages, glfw, libunistring, harfbuzz,
|
|
fontconfig, pkgconfig, ncurses, imagemagick, xsel,
|
|
libstartup_notification, libX11, libXrandr, libXinerama, libXcursor,
|
|
libxkbcommon, libXi, libXext, wayland-protocols, wayland,
|
|
which
|
|
}:
|
|
|
|
with python3Packages;
|
|
buildPythonApplication rec {
|
|
version = "0.11.2";
|
|
name = "kitty-${version}";
|
|
format = "other";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kovidgoyal";
|
|
repo = "kitty";
|
|
rev = "v${version}";
|
|
sha256 = "0vmxgyxrgaqijwd51ldd8pkz7jn9hdcfib1dqr0ai614286v69hw";
|
|
};
|
|
|
|
buildInputs = [
|
|
fontconfig glfw ncurses libunistring harfbuzz libX11
|
|
libXrandr libXinerama libXcursor libxkbcommon libXi libXext
|
|
wayland-protocols wayland
|
|
];
|
|
|
|
nativeBuildInputs = [ pkgconfig which sphinx ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace kitty/utils.py \
|
|
--replace "find_library('startup-notification-1')" "'${libstartup_notification}/lib/libstartup-notification-1.so'"
|
|
|
|
substituteInPlace docs/Makefile \
|
|
--replace 'python3 .. +launch $(shell which sphinx-build)' \
|
|
'PYTHONPATH=$PYTHONPATH:.. HOME=$TMPDIR/nowhere $(shell which sphinx-build)'
|
|
'';
|
|
|
|
buildPhase = ''
|
|
python3 setup.py linux-package
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
mkdir -p $out
|
|
cp -r linux-package/{bin,share,lib} $out
|
|
wrapProgram "$out/bin/kitty" --prefix PATH : "$out/bin:${stdenv.lib.makeBinPath [ imagemagick xsel ]}"
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://github.com/kovidgoyal/kitty;
|
|
description = "A modern, hackable, featureful, OpenGL based terminal emulator";
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ tex ];
|
|
};
|
|
}
|