mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-28 14:01:29 -05:00
gnu: slurp: Add missing dependency.
This follows up 8dc429165c
, 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.
This commit is contained in:
parent
8dc429165c
commit
007edfb72a
1 changed files with 9 additions and 6 deletions
|
@ -78,6 +78,7 @@ (define-module (gnu packages image)
|
||||||
#:use-module (gnu packages textutils)
|
#:use-module (gnu packages textutils)
|
||||||
#:use-module (gnu packages video)
|
#:use-module (gnu packages video)
|
||||||
#:use-module (gnu packages web)
|
#:use-module (gnu packages web)
|
||||||
|
#:use-module (gnu packages xdisorg)
|
||||||
#:use-module (gnu packages xml)
|
#:use-module (gnu packages xml)
|
||||||
#:use-module (gnu packages xorg)
|
#:use-module (gnu packages xorg)
|
||||||
#:use-module ((guix licenses) #:prefix license:)
|
#:use-module ((guix licenses) #:prefix license:)
|
||||||
|
@ -1941,16 +1942,18 @@ (define-public slurp
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1fby2v2ylcadgclds05wpkl9xi2r9dfz49dqyqpn20rjv1wnz3jv"))))
|
(base32 "1fby2v2ylcadgclds05wpkl9xi2r9dfz49dqyqpn20rjv1wnz3jv"))))
|
||||||
(build-system meson-build-system)
|
(build-system meson-build-system)
|
||||||
(native-inputs `(("pkg-config" ,pkg-config)))
|
(native-inputs
|
||||||
(inputs `(("cairo" ,cairo)
|
`(("pkg-config" ,pkg-config)
|
||||||
("scdoc" ,scdoc)
|
("scdoc" ,scdoc)))
|
||||||
("wayland" ,wayland)
|
(inputs
|
||||||
("wayland-protocols" ,wayland-protocols)))
|
`(("cairo" ,cairo)
|
||||||
|
("libxkbcommon" ,libxkbcommon)
|
||||||
|
("wayland" ,wayland)
|
||||||
|
("wayland-protocols" ,wayland-protocols)))
|
||||||
(home-page "https://github.com/emersion/slurp")
|
(home-page "https://github.com/emersion/slurp")
|
||||||
(synopsis "Select a region in a Wayland compositor")
|
(synopsis "Select a region in a Wayland compositor")
|
||||||
(description "Slurp can select a region in a Wayland compositor and print it
|
(description "Slurp can select a region in a Wayland compositor and print it
|
||||||
to the standard output. It works well together with grim.")
|
to the standard output. It works well together with grim.")
|
||||||
;; MIT license.
|
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public sng
|
(define-public sng
|
||||||
|
|
Loading…
Reference in a new issue