b4038eacd8
https://github.com/kovidgoyal/kitty/releases/tag/v0.23.1 Add the new dependencies required for building the documentation. Also run the postInstall hook at the end of the installPhase instead of in the middle. The URL of the changelog has changed slightly. The old one still works because of a redirect but it's better to use the new one directly.
150 lines
3.8 KiB
Nix
150 lines
3.8 KiB
Nix
{ lib, stdenv, fetchFromGitHub, python3Packages, libunistring,
|
|
harfbuzz, fontconfig, pkg-config, ncurses, imagemagick, xsel,
|
|
libstartup_notification, libGL, libX11, libXrandr, libXinerama, libXcursor,
|
|
libxkbcommon, libXi, libXext, wayland-protocols, wayland,
|
|
lcms2,
|
|
installShellFiles,
|
|
dbus,
|
|
Cocoa,
|
|
CoreGraphics,
|
|
Foundation,
|
|
IOKit,
|
|
Kernel,
|
|
OpenGL,
|
|
libcanberra,
|
|
libicns,
|
|
libpng,
|
|
python3,
|
|
zlib,
|
|
}:
|
|
|
|
with python3Packages;
|
|
buildPythonApplication rec {
|
|
pname = "kitty";
|
|
version = "0.23.1";
|
|
format = "other";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kovidgoyal";
|
|
repo = "kitty";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-2RwDU6EOJWF0u2ikJFg9U2yqSXergDkJH3h2i+QJ7G4=";
|
|
};
|
|
|
|
buildInputs = [
|
|
harfbuzz
|
|
ncurses
|
|
lcms2
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
Cocoa
|
|
CoreGraphics
|
|
Foundation
|
|
IOKit
|
|
Kernel
|
|
OpenGL
|
|
libpng
|
|
python3
|
|
zlib
|
|
] ++ lib.optionals stdenv.isLinux [
|
|
fontconfig libunistring libcanberra libX11
|
|
libXrandr libXinerama libXcursor libxkbcommon libXi libXext
|
|
wayland-protocols wayland dbus
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
installShellFiles
|
|
ncurses
|
|
pkg-config
|
|
sphinx
|
|
furo
|
|
sphinx-copybutton
|
|
sphinxext-opengraph
|
|
sphinx-inline-tabs
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
imagemagick
|
|
libicns # For the png2icns tool.
|
|
];
|
|
|
|
propagatedBuildInputs = lib.optional stdenv.isLinux libGL;
|
|
|
|
outputs = [ "out" "terminfo" ];
|
|
|
|
# Causes build failure due to warning
|
|
hardeningDisable = lib.optional stdenv.cc.isClang "strictoverflow";
|
|
|
|
dontConfigure = true;
|
|
|
|
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
|
|
'';
|
|
|
|
checkInputs = [ pillow ];
|
|
|
|
checkPhase =
|
|
let buildBinPath =
|
|
if stdenv.isDarwin
|
|
then "kitty.app/Contents/MacOS"
|
|
else "linux-package/bin";
|
|
in
|
|
''
|
|
env PATH="${buildBinPath}:$PATH" ${python.interpreter} test.py
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
mkdir -p $out
|
|
${if stdenv.isDarwin then ''
|
|
mkdir "$out/bin"
|
|
ln -s ../Applications/kitty.app/Contents/MacOS/kitty "$out/bin/kitty"
|
|
mkdir "$out/Applications"
|
|
cp -r kitty.app "$out/Applications/kitty.app"
|
|
|
|
installManPage 'docs/_build/man/kitty.1'
|
|
'' else ''
|
|
cp -r linux-package/{bin,share,lib} $out
|
|
''}
|
|
wrapProgram "$out/bin/kitty" --prefix PATH : "$out/bin:${lib.makeBinPath [ imagemagick xsel ncurses.dev ]}"
|
|
|
|
installShellCompletion --cmd kitty \
|
|
--bash <("$out/bin/kitty" + complete setup bash) \
|
|
--fish <("$out/bin/kitty" + complete setup fish) \
|
|
--zsh <("$out/bin/kitty" + complete setup zsh)
|
|
runHook postInstall
|
|
'';
|
|
|
|
postInstall = ''
|
|
terminfo_src=${if stdenv.isDarwin then
|
|
''"$out/Applications/kitty.app/Contents/Resources/terminfo"''
|
|
else
|
|
"$out/share/terminfo"}
|
|
|
|
mkdir -p $terminfo/share
|
|
mv "$terminfo_src" $terminfo/share/terminfo
|
|
|
|
mkdir -p $out/nix-support
|
|
echo "$terminfo" >> $out/nix-support/propagated-user-env-packages
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/kovidgoyal/kitty";
|
|
description = "A modern, hackable, featureful, OpenGL based terminal emulator";
|
|
license = licenses.gpl3Only;
|
|
changelog = "https://sw.kovidgoyal.net/kitty/changelog/";
|
|
platforms = platforms.darwin ++ platforms.linux;
|
|
maintainers = with maintainers; [ tex rvolosatovs Luflosi ];
|
|
};
|
|
}
|