Skip to content

Commit

Permalink
kitty: 0.10.1 -> 0.11.2
Browse files Browse the repository at this point in the history
  • Loading branch information
dtzWill committed Jul 5, 2018
1 parent a689162 commit 481e61f
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions pkgs/applications/misc/kitty/default.nix
@@ -1,31 +1,38 @@
{ stdenv, fetchFromGitHub, pkgs, python3Packages, glfw, libunistring, harfbuzz,
fontconfig, zlib, pkgconfig, ncurses, imagemagick, makeWrapper, xsel,
libstartup_notification, libX11, libXrandr, libXinerama, libXcursor,
libxkbcommon, libXi, libXext }:
libxkbcommon, libXi, libXext, wayland-protocols, wayland,
which
}:

with python3Packages;
buildPythonApplication rec {
version = "0.10.1";
version = "0.11.2";
name = "kitty-${version}";
format = "other";

src = fetchFromGitHub {
owner = "kovidgoyal";
repo = "kitty";
rev = "v${version}";
sha256 = "1xwrrj0g70hh8zsjbd05x0js776xlf7c6mdsmrqlw4y7jfnlgl45";
sha256 = "0vmxgyxrgaqijwd51ldd8pkz7jn9hdcfib1dqr0ai614286v69hw";
};

buildInputs = [
fontconfig glfw ncurses libunistring harfbuzz libX11
libXrandr libXinerama libXcursor libxkbcommon libXi libXext
wayland-protocols wayland
];

nativeBuildInputs = [ pkgconfig ];
nativeBuildInputs = [ pkgconfig which sphinx ];

postPatch = ''
substituteInPlace kitty/utils.py \
--replace "find_library('startup-notification-1')" "'${libstartup_notification}/lib/libstartup-notification-1.so'"
substituteInPlace docs/Makefile \
--replace 'python3 .. +launch $(shell which sphinx-build)' \
'PYTHONPATH=$PYTHONPATH:.. HOME=$TMPDIR/nowhere $(shell which sphinx-build)'
'';

buildPhase = ''
Expand Down

0 comments on commit 481e61f

Please sign in to comment.