guix-commits
[Top][All Lists]
Advanced

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

25/25: gnu: pangomm: Remove input labels.


From: guix-commits
Subject: 25/25: gnu: pangomm: Remove input labels.
Date: Sat, 16 Jul 2022 18:08:30 -0400 (EDT)

mbakke pushed a commit to branch core-updates
in repository guix.

commit f4f6d6582bd393355939ea9dffa8f76f1fd00d4c
Author: Marius Bakke <marius@gnu.org>
AuthorDate: Sat Jul 16 17:38:39 2022 +0200

    gnu: pangomm: Remove input labels.
    
    * gnu/packages/gtk.scm (pangomm)[native-inputs]: Remove labels.
    [arguments]: While at it, remove trailing #t.
---
 gnu/packages/gtk.scm | 25 +++++++++++--------------
 1 file changed, 11 insertions(+), 14 deletions(-)

diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm
index 918f2204fe..81d34a5151 100644
--- a/gnu/packages/gtk.scm
+++ b/gnu/packages/gtk.scm
@@ -1610,10 +1610,8 @@ library.")
     (build-system meson-build-system)
     (outputs '("out" "doc"))
     (arguments
-     `(#:glib-or-gtk? #t     ; To wrap binaries and/or compile schemas
-       #:configure-flags
-       (list
-        "-Dbuild-documentation=true")
+     '(#:glib-or-gtk? #t
+       #:configure-flags '("-Dbuild-documentation=true")
        #:phases
        (modify-phases %standard-phases
          (add-after 'install 'move-doc
@@ -1623,17 +1621,16 @@ library.")
                (mkdir-p (string-append doc "/share"))
                (rename-file
                 (string-append out "/share/doc")
-                (string-append doc "/share/doc"))
-               #t))))))
+                (string-append doc "/share/doc"))))))))
     (native-inputs
-     `(("dot" ,graphviz)
-       ("doxygen" ,doxygen)
-       ("m4" ,m4)
-       ("mm-common" ,mm-common)
-       ("perl" ,perl)
-       ("pkg-config" ,pkg-config)
-       ("python" ,python)
-       ("xsltproc" ,libxslt)))
+     (list doxygen
+           graphviz                     ;for 'dot'
+           libxslt                      ;for 'xsltproc'
+           m4
+           mm-common
+           perl
+           pkg-config
+           python))
     (propagated-inputs
      (list cairo cairomm glibmm pango))
     (home-page "https://pango.gnome.org//";)



reply via email to

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