guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch staging updated: gnu: slurp: Add missing dependency.


From: guix-commits
Subject: branch staging updated: gnu: slurp: Add missing dependency.
Date: Thu, 19 Nov 2020 18:36:16 -0500

This is an automated email from the git hooks/post-receive script.

mbakke pushed a commit to branch staging
in repository guix.

The following commit(s) were added to refs/heads/staging by this push:
     new 007edfb  gnu: slurp: Add missing dependency.
007edfb is described below

commit 007edfb72acaeb087c4478020d1bfd729a51c237
Author: Marius Bakke <marius@gnu.org>
AuthorDate: Fri Nov 20 00:32:45 2020 +0100

    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.
---
 gnu/packages/image.scm | 15 +++++++++------
 1 file changed, 9 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/image.scm b/gnu/packages/image.scm
index ed87d2f..75f9a1b 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]