diff options
author | Rutger Helling <rhelling@mykolab.com> | 2019-08-06 13:04:47 +0200 |
---|---|---|
committer | Rutger Helling <rhelling@mykolab.com> | 2019-08-06 13:06:25 +0200 |
commit | 932f795c0e3ef352ff8a9281b99033ea8df60fda (patch) | |
tree | bd521b40e2f2ef5a8681a9f0bfe3a3064ff76f18 | |
parent | 6a5198170ed5f10e1eee2e25fc6a39f3f33a40fd (diff) | |
download | guix-932f795c0e3ef352ff8a9281b99033ea8df60fda.tar guix-932f795c0e3ef352ff8a9281b99033ea8df60fda.tar.gz |
gnu: kitty: Update to 0.14.3.
* gnu/packages/terminals.scm (kitty): Update to 0.14.3.
[inputs]: Add libcanberra.
-rw-r--r-- | gnu/packages/terminals.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/terminals.scm b/gnu/packages/terminals.scm index df8d1e4b79..9077d295db 100644 --- a/gnu/packages/terminals.scm +++ b/gnu/packages/terminals.scm @@ -57,6 +57,7 @@ #:use-module (gnu packages golang) #:use-module (gnu packages gtk) #:use-module (gnu packages image) + #:use-module (gnu packages libcanberra) #:use-module (gnu packages libevent) #:use-module (gnu packages linux) #:use-module (gnu packages ncurses) @@ -954,7 +955,7 @@ tmux.") (define-public kitty (package (name "kitty") - (version "0.14.2") + (version "0.14.3") (home-page "https://sw.kovidgoyal.net/kitty/") (source (origin @@ -965,7 +966,7 @@ tmux.") (file-name (git-file-name name version)) (sha256 (base32 - "15iv3k7iryf10n8n67d37x24pzcarq97a3dr42lbld00k1lx19az")) + "0wi6b6b1nyp16rcpcghk6by62wy6qsamv1xdymyn0zbqgd8h9n6b")) (modules '((guix build utils))) (snippet '(begin @@ -984,6 +985,7 @@ tmux.") `(("python" ,python) ("harfbuzz" ,harfbuzz) ("zlib" ,zlib) + ("libcanberra" ,libcanberra) ("libpng" ,libpng) ("freetype" ,freetype) ("fontconfig" ,fontconfig) |