nixpkgs/pkgs/applications/misc/kitty/default.nix

68 lines
1.9 KiB
Nix
Raw Normal View History

{ 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,
2018-09-04 23:44:05 +02:00
which, dbus
2018-07-05 17:57:40 +02:00
}:
with python3Packages;
buildPythonApplication rec {
2018-10-01 17:27:31 +02:00
version = "0.12.3";
name = "kitty-${version}";
format = "other";
src = fetchFromGitHub {
owner = "kovidgoyal";
repo = "kitty";
rev = "v${version}";
2018-10-01 17:27:31 +02:00
sha256 = "1nhk8pbwr673gw9qjgca4lzjgp8rw7sf99ra4wsh8jplf3kvgq5c";
};
2018-03-19 23:41:03 +01:00
buildInputs = [
fontconfig glfw ncurses libunistring harfbuzz libX11
libXrandr libXinerama libXcursor libxkbcommon libXi libXext
2018-09-04 23:44:05 +02:00
wayland-protocols wayland dbus
2018-03-19 23:41:03 +01:00
];
2018-07-05 17:57:40 +02:00
nativeBuildInputs = [ pkgconfig which sphinx ];
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 \
2018-10-01 17:27:31 +02:00
--replace 'python3 .. +launch :sphinx-build' \
'PYTHONPATH=$PYTHONPATH:.. HOME=$TMPDIR/nowhere sphinx-build'
2017-11-30 09:02:47 +01: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 ]}"
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
'';
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 ];
};
}