2018-07-21 02:44:44 +02:00
|
|
|
{ stdenv, fetchFromGitHub, python3Packages, glfw, libunistring, harfbuzz,
|
|
|
|
fontconfig, pkgconfig, ncurses, imagemagick, xsel,
|
2018-03-19 23:41:03 +01:00
|
|
|
libstartup_notification, libX11, libXrandr, libXinerama, libXcursor,
|
2018-07-05 17:57:40 +02:00
|
|
|
libxkbcommon, libXi, libXext, wayland-protocols, wayland,
|
|
|
|
which
|
|
|
|
}:
|
2017-10-25 23:03:20 +02:00
|
|
|
|
|
|
|
with python3Packages;
|
|
|
|
buildPythonApplication rec {
|
2018-08-20 20:49:10 +02:00
|
|
|
version = "0.11.3";
|
2017-10-25 23:03:20 +02:00
|
|
|
name = "kitty-${version}";
|
|
|
|
format = "other";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "kovidgoyal";
|
|
|
|
repo = "kitty";
|
|
|
|
rev = "v${version}";
|
2018-08-20 20:49:10 +02:00
|
|
|
sha256 = "1fql8ayxvip8hgq9gy0dhqfvngv13gh5bf71vnc3agd80kzq1n73";
|
2017-10-25 23:03:20 +02:00
|
|
|
};
|
|
|
|
|
2018-03-19 23:41:03 +01:00
|
|
|
buildInputs = [
|
|
|
|
fontconfig glfw ncurses libunistring harfbuzz libX11
|
|
|
|
libXrandr libXinerama libXcursor libxkbcommon libXi libXext
|
2018-07-05 17:57:40 +02:00
|
|
|
wayland-protocols wayland
|
2018-03-19 23:41:03 +01:00
|
|
|
];
|
2017-10-25 23:03:20 +02:00
|
|
|
|
2018-07-05 17:57:40 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig which sphinx ];
|
2017-10-25 23:03:20 +02:00
|
|
|
|
2018-09-02 21:07:31 +02:00
|
|
|
outputs = [ "out" "terminfo" ];
|
|
|
|
|
2017-11-30 09:02:47 +01:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace kitty/utils.py \
|
|
|
|
--replace "find_library('startup-notification-1')" "'${libstartup_notification}/lib/libstartup-notification-1.so'"
|
2018-07-05 17:57:40 +02:00
|
|
|
|
|
|
|
substituteInPlace docs/Makefile \
|
|
|
|
--replace 'python3 .. +launch $(shell which sphinx-build)' \
|
|
|
|
'PYTHONPATH=$PYTHONPATH:.. HOME=$TMPDIR/nowhere $(shell which sphinx-build)'
|
2017-11-30 09:02:47 +01:00
|
|
|
'';
|
|
|
|
|
2017-10-25 23:03:20 +02:00
|
|
|
buildPhase = ''
|
|
|
|
python3 setup.py linux-package
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
runHook preInstall
|
|
|
|
mkdir -p $out
|
|
|
|
cp -r linux-package/{bin,share,lib} $out
|
2017-11-30 09:02:47 +01:00
|
|
|
wrapProgram "$out/bin/kitty" --prefix PATH : "$out/bin:${stdenv.lib.makeBinPath [ imagemagick xsel ]}"
|
2017-10-25 23:03:20 +02:00
|
|
|
runHook postInstall
|
|
|
|
'';
|
|
|
|
|
2018-09-02 21:07:31 +02:00
|
|
|
postInstall = ''
|
|
|
|
mkdir -p $terminfo/share
|
|
|
|
mv $out/share/terminfo $terminfo/share/terminfo
|
|
|
|
|
|
|
|
mkdir -p $out/nix-support
|
|
|
|
echo "$terminfo" >> $out/nix-support/propagated-user-env-packages
|
|
|
|
'';
|
|
|
|
|
2017-10-25 23:03:20 +02:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://github.com/kovidgoyal/kitty;
|
|
|
|
description = "A modern, hackable, featureful, OpenGL based terminal emulator";
|
|
|
|
license = licenses.gpl3;
|
2017-12-25 21:53:58 +01:00
|
|
|
platforms = platforms.linux;
|
2018-09-02 21:07:31 +02:00
|
|
|
maintainers = with maintainers; [ tex rvolosatovs ];
|
2017-10-25 23:03:20 +02:00
|
|
|
};
|
|
|
|
}
|