9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
144 lines
3.7 KiB
Nix
144 lines
3.7 KiB
Nix
{ lib, stdenv, substituteAll, 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.19.3";
|
|
format = "other";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kovidgoyal";
|
|
repo = "kitty";
|
|
rev = "v${version}";
|
|
sha256 = "0r49bybqy6c0n1lz6yc85py80wb40w757m60f5rszjf200wnyl6s";
|
|
};
|
|
|
|
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 = [
|
|
pkg-config sphinx ncurses
|
|
installShellFiles
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
imagemagick
|
|
libicns # For the png2icns tool.
|
|
];
|
|
|
|
propagatedBuildInputs = lib.optional stdenv.isLinux libGL;
|
|
|
|
outputs = [ "out" "terminfo" ];
|
|
|
|
patches = [
|
|
./fix-paths.patch
|
|
];
|
|
|
|
# Causes build failure due to warning
|
|
hardeningDisable = lib.optional stdenv.cc.isClang "strictoverflow";
|
|
|
|
dontConfigure = true;
|
|
|
|
buildPhase = 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'
|
|
'';
|
|
|
|
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 ]}"
|
|
runHook postInstall
|
|
|
|
installShellCompletion --cmd kitty \
|
|
--bash <("$out/bin/kitty" + complete setup bash) \
|
|
--fish <("$out/bin/kitty" + complete setup fish) \
|
|
--zsh <("$out/bin/kitty" + complete setup zsh)
|
|
'';
|
|
|
|
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.gpl3;
|
|
changelog = "https://sw.kovidgoyal.net/kitty/changelog.html";
|
|
platforms = platforms.darwin ++ platforms.linux;
|
|
maintainers = with maintainers; [ tex rvolosatovs Luflosi ];
|
|
};
|
|
}
|