diff options
author | Marius Bakke <marius@gnu.org> | 2020-11-20 00:32:45 +0100 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2020-11-20 00:32:45 +0100 |
commit | 007edfb72acaeb087c4478020d1bfd729a51c237 (patch) | |
tree | 61564e642748f5e023fcfe2ea8bdfc6c88d220ef /gnu/packages | |
parent | 8dc429165c9a354ffb18703598ea923d7f5e9e9a (diff) | |
download | guix-007edfb72acaeb087c4478020d1bfd729a51c237.tar guix-007edfb72acaeb087c4478020d1bfd729a51c237.tar.gz |
gnu: slurp: Add missing dependency.
This follows up 8dc429165c9a354ffb18703598ea923d7f5e9e9a, which forgot to
stage the libxkbcommon dependency. While at it, reindent, and make SCDOC a
native input.
* gnu/packages/image.scm (slurp)[inputs]: Add LIBXKBCOMMON. Move SCDOC ...
[inputs]: ... here.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/image.scm | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/gnu/packages/image.scm b/gnu/packages/image.scm index ed87d2f4b3..75f9a1bf36 100644 --- a/gnu/packages/image.scm +++ b/gnu/packages/image.scm @@ -78,6 +78,7 @@ #:use-module (gnu packages textutils) #:use-module (gnu packages video) #:use-module (gnu packages web) + #:use-module (gnu packages xdisorg) #:use-module (gnu packages xml) #:use-module (gnu packages xorg) #:use-module ((guix licenses) #:prefix license:) @@ -1941,16 +1942,18 @@ identical visual appearance.") (sha256 (base32 "1fby2v2ylcadgclds05wpkl9xi2r9dfz49dqyqpn20rjv1wnz3jv")))) (build-system meson-build-system) - (native-inputs `(("pkg-config" ,pkg-config))) - (inputs `(("cairo" ,cairo) - ("scdoc" ,scdoc) - ("wayland" ,wayland) - ("wayland-protocols" ,wayland-protocols))) + (native-inputs + `(("pkg-config" ,pkg-config) + ("scdoc" ,scdoc))) + (inputs + `(("cairo" ,cairo) + ("libxkbcommon" ,libxkbcommon) + ("wayland" ,wayland) + ("wayland-protocols" ,wayland-protocols))) (home-page "https://github.com/emersion/slurp") (synopsis "Select a region in a Wayland compositor") (description "Slurp can select a region in a Wayland compositor and print it to the standard output. It works well together with grim.") - ;; MIT license. (license license:expat))) (define-public sng |