kitty: 0.23.1 -> 0.24.1
https://github.com/kovidgoyal/kitty/releases/tag/v0.23.1 A new dependency is needed. Closes https://github.com/NixOS/nixpkgs/issues/153928.
This commit is contained in:
parent
6f7a433402
commit
3bb443d5d9
1 changed files with 4 additions and 2 deletions
|
@ -3,6 +3,7 @@
|
||||||
libstartup_notification, libGL, libX11, libXrandr, libXinerama, libXcursor,
|
libstartup_notification, libGL, libX11, libXrandr, libXinerama, libXcursor,
|
||||||
libxkbcommon, libXi, libXext, wayland-protocols, wayland,
|
libxkbcommon, libXi, libXext, wayland-protocols, wayland,
|
||||||
lcms2,
|
lcms2,
|
||||||
|
librsync,
|
||||||
installShellFiles,
|
installShellFiles,
|
||||||
dbus,
|
dbus,
|
||||||
Cocoa,
|
Cocoa,
|
||||||
|
@ -21,20 +22,21 @@
|
||||||
with python3Packages;
|
with python3Packages;
|
||||||
buildPythonApplication rec {
|
buildPythonApplication rec {
|
||||||
pname = "kitty";
|
pname = "kitty";
|
||||||
version = "0.23.1";
|
version = "0.24.1";
|
||||||
format = "other";
|
format = "other";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "kovidgoyal";
|
owner = "kovidgoyal";
|
||||||
repo = "kitty";
|
repo = "kitty";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-2RwDU6EOJWF0u2ikJFg9U2yqSXergDkJH3h2i+QJ7G4=";
|
sha256 = "sha256-WPkyub7CwNXRksUmqiZeznnSqEPFpyHTeFLQ+D4Fb5c=";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
harfbuzz
|
harfbuzz
|
||||||
ncurses
|
ncurses
|
||||||
lcms2
|
lcms2
|
||||||
|
librsync
|
||||||
] ++ lib.optionals stdenv.isDarwin [
|
] ++ lib.optionals stdenv.isDarwin [
|
||||||
Cocoa
|
Cocoa
|
||||||
CoreGraphics
|
CoreGraphics
|
||||||
|
|
Loading…
Reference in a new issue