2021-04-27 23:09:09 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, python3Packages, libunistring,
|
2021-01-19 06:50:56 +00:00
|
|
|
harfbuzz, fontconfig, pkg-config, ncurses, imagemagick, xsel,
|
2019-07-24 22:51:06 +01:00
|
|
|
libstartup_notification, libGL, libX11, libXrandr, libXinerama, libXcursor,
|
2018-07-05 16:57:40 +01:00
|
|
|
libxkbcommon, libXi, libXext, wayland-protocols, wayland,
|
2020-10-04 17:42:36 +01:00
|
|
|
lcms2,
|
2020-03-10 21:46:25 +00:00
|
|
|
installShellFiles,
|
2020-06-20 12:28:12 +01:00
|
|
|
dbus,
|
2019-03-31 20:18:58 +01:00
|
|
|
Cocoa,
|
|
|
|
CoreGraphics,
|
|
|
|
Foundation,
|
|
|
|
IOKit,
|
|
|
|
Kernel,
|
|
|
|
OpenGL,
|
2019-07-29 09:44:34 +01:00
|
|
|
libcanberra,
|
2019-03-31 20:18:58 +01:00
|
|
|
libicns,
|
|
|
|
libpng,
|
|
|
|
python3,
|
|
|
|
zlib,
|
2018-07-05 16:57:40 +01:00
|
|
|
}:
|
2017-10-25 22:03:20 +01:00
|
|
|
|
|
|
|
with python3Packages;
|
|
|
|
buildPythonApplication rec {
|
2019-02-15 09:08:27 +00:00
|
|
|
pname = "kitty";
|
2021-06-14 09:24:36 +01:00
|
|
|
version = "0.21.1";
|
2017-10-25 22:03:20 +01:00
|
|
|
format = "other";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "kovidgoyal";
|
|
|
|
repo = "kitty";
|
|
|
|
rev = "v${version}";
|
2021-06-14 09:24:36 +01:00
|
|
|
sha256 = "sha256-/+OSVjC4++A4kaxEfI2kIgjXxL67lfoXCdH2PykLWxA=";
|
2017-10-25 22:03:20 +01:00
|
|
|
};
|
|
|
|
|
2018-03-19 22:41:03 +00:00
|
|
|
buildInputs = [
|
2019-07-29 09:44:34 +01:00
|
|
|
harfbuzz
|
|
|
|
ncurses
|
2020-10-04 17:42:36 +01:00
|
|
|
lcms2
|
2021-01-15 13:21:58 +00:00
|
|
|
] ++ lib.optionals stdenv.isDarwin [
|
2019-03-31 20:18:58 +01:00
|
|
|
Cocoa
|
|
|
|
CoreGraphics
|
|
|
|
Foundation
|
|
|
|
IOKit
|
|
|
|
Kernel
|
|
|
|
OpenGL
|
|
|
|
libpng
|
|
|
|
python3
|
|
|
|
zlib
|
2021-01-15 13:21:58 +00:00
|
|
|
] ++ lib.optionals stdenv.isLinux [
|
2019-11-02 01:11:05 +00:00
|
|
|
fontconfig libunistring libcanberra libX11
|
2018-03-19 22:41:03 +00:00
|
|
|
libXrandr libXinerama libXcursor libxkbcommon libXi libXext
|
2018-09-04 22:44:05 +01:00
|
|
|
wayland-protocols wayland dbus
|
2018-03-19 22:41:03 +00:00
|
|
|
];
|
2017-10-25 22:03:20 +01:00
|
|
|
|
2019-03-31 20:18:58 +01:00
|
|
|
nativeBuildInputs = [
|
2021-01-19 06:50:56 +00:00
|
|
|
pkg-config sphinx ncurses
|
2020-11-13 12:31:29 +00:00
|
|
|
installShellFiles
|
2021-01-15 13:21:58 +00:00
|
|
|
] ++ lib.optionals stdenv.isDarwin [
|
2019-03-31 20:18:58 +01:00
|
|
|
imagemagick
|
|
|
|
libicns # For the png2icns tool.
|
|
|
|
];
|
2017-10-25 22:03:20 +01:00
|
|
|
|
2021-01-15 13:21:58 +00:00
|
|
|
propagatedBuildInputs = lib.optional stdenv.isLinux libGL;
|
2019-07-24 22:51:06 +01:00
|
|
|
|
2018-09-02 20:07:31 +01:00
|
|
|
outputs = [ "out" "terminfo" ];
|
|
|
|
|
2020-02-18 15:51:31 +00:00
|
|
|
# Causes build failure due to warning
|
2021-01-15 13:21:58 +00:00
|
|
|
hardeningDisable = lib.optional stdenv.cc.isClang "strictoverflow";
|
2020-02-18 15:51:31 +00:00
|
|
|
|
2020-06-20 12:28:12 +01:00
|
|
|
dontConfigure = true;
|
|
|
|
|
2021-06-14 09:18:04 +01:00
|
|
|
buildPhase = ''
|
|
|
|
runHook preBuild
|
|
|
|
${if stdenv.isDarwin then ''
|
|
|
|
${python.interpreter} setup.py kitty.app \
|
|
|
|
--update-check-interval=0 \
|
|
|
|
--disable-link-time-optimization
|
|
|
|
make man
|
|
|
|
'' else ''
|
|
|
|
${python.interpreter} setup.py linux-package \
|
|
|
|
--update-check-interval=0 \
|
|
|
|
--egl-library='${lib.getLib libGL}/lib/libEGL.so.1' \
|
|
|
|
--startup-notification-library='${libstartup_notification}/lib/libstartup-notification-1.so' \
|
|
|
|
--canberra-library='${libcanberra}/lib/libcanberra.so'
|
|
|
|
''}
|
|
|
|
runHook postBuild
|
2020-06-20 12:28:12 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
checkInputs = [ pillow ];
|
|
|
|
|
2020-07-30 16:06:30 +01:00
|
|
|
checkPhase =
|
|
|
|
let buildBinPath =
|
|
|
|
if stdenv.isDarwin
|
|
|
|
then "kitty.app/Contents/MacOS"
|
|
|
|
else "linux-package/bin";
|
|
|
|
in
|
|
|
|
''
|
|
|
|
env PATH="${buildBinPath}:$PATH" ${python.interpreter} test.py
|
|
|
|
'';
|
2017-10-25 22:03:20 +01:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
runHook preInstall
|
|
|
|
mkdir -p $out
|
2019-03-31 20:18:58 +01:00
|
|
|
${if stdenv.isDarwin then ''
|
|
|
|
mkdir "$out/bin"
|
2019-09-27 16:53:40 +01:00
|
|
|
ln -s ../Applications/kitty.app/Contents/MacOS/kitty "$out/bin/kitty"
|
2019-03-31 20:18:58 +01:00
|
|
|
mkdir "$out/Applications"
|
|
|
|
cp -r kitty.app "$out/Applications/kitty.app"
|
2020-03-10 21:46:25 +00:00
|
|
|
|
|
|
|
installManPage 'docs/_build/man/kitty.1'
|
2019-03-31 20:18:58 +01:00
|
|
|
'' else ''
|
2017-10-25 22:03:20 +01:00
|
|
|
cp -r linux-package/{bin,share,lib} $out
|
2019-03-31 20:18:58 +01:00
|
|
|
''}
|
2021-01-15 13:21:58 +00:00
|
|
|
wrapProgram "$out/bin/kitty" --prefix PATH : "$out/bin:${lib.makeBinPath [ imagemagick xsel ncurses.dev ]}"
|
2017-10-25 22:03:20 +01:00
|
|
|
runHook postInstall
|
2019-02-05 19:59:11 +00:00
|
|
|
|
2020-11-13 12:31:29 +00:00
|
|
|
installShellCompletion --cmd kitty \
|
|
|
|
--bash <("$out/bin/kitty" + complete setup bash) \
|
|
|
|
--fish <("$out/bin/kitty" + complete setup fish) \
|
|
|
|
--zsh <("$out/bin/kitty" + complete setup zsh)
|
2017-10-25 22:03:20 +01:00
|
|
|
'';
|
|
|
|
|
2018-09-02 20:07:31 +01:00
|
|
|
postInstall = ''
|
2019-03-31 20:18:58 +01:00
|
|
|
terminfo_src=${if stdenv.isDarwin then
|
|
|
|
''"$out/Applications/kitty.app/Contents/Resources/terminfo"''
|
|
|
|
else
|
|
|
|
"$out/share/terminfo"}
|
|
|
|
|
2018-09-02 20:07:31 +01:00
|
|
|
mkdir -p $terminfo/share
|
2019-03-31 20:18:58 +01:00
|
|
|
mv "$terminfo_src" $terminfo/share/terminfo
|
2018-09-02 20:07:31 +01:00
|
|
|
|
|
|
|
mkdir -p $out/nix-support
|
|
|
|
echo "$terminfo" >> $out/nix-support/propagated-user-env-packages
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/kovidgoyal/kitty";
|
2017-10-25 22:03:20 +01:00
|
|
|
description = "A modern, hackable, featureful, OpenGL based terminal emulator";
|
2021-04-27 22:06:42 +01:00
|
|
|
license = licenses.gpl3Only;
|
2020-06-20 12:28:12 +01:00
|
|
|
changelog = "https://sw.kovidgoyal.net/kitty/changelog.html";
|
2019-03-31 20:18:58 +01:00
|
|
|
platforms = platforms.darwin ++ platforms.linux;
|
2020-08-05 20:30:09 +01:00
|
|
|
maintainers = with maintainers; [ tex rvolosatovs Luflosi ];
|
2017-10-25 22:03:20 +01:00
|
|
|
};
|
|
|
|
}
|