guix-commits
[Top][All Lists]
Advanced

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

17/17: gnu: deja-dup: Use new style inputs.


From: guix-commits
Subject: 17/17: gnu: deja-dup: Use new style inputs.
Date: Tue, 12 Jul 2022 23:26:36 -0400 (EDT)

apteryx pushed a commit to branch master
in repository guix.

commit c8f32406e8778c803eddeefe0f510733a9018e67
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Tue Jul 12 22:48:08 2022 -0400

    gnu: deja-dup: Use new style inputs.
    
    * gnu/packages/gnome.scm (deja-dup)[inputs, native-inputs]: Use new style.
---
 gnu/packages/gnome.scm | 46 +++++++++++++++++++++++-----------------------
 1 file changed, 23 insertions(+), 23 deletions(-)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index e8d1435ddb..c80663f472 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -1811,30 +1811,30 @@ configuration files for the GNOME menu, as well as a 
simple menu editor.")
                `("PATH" ":" prefix
                  (,(string-append (assoc-ref inputs "duplicity") 
"/bin")))))))))
     (inputs
-     `(("bash-minimal" ,bash-minimal)
-       ("duplicity" ,duplicity)
-       ("gsettings-desktop-schemas" ,gsettings-desktop-schemas)
-       ("gtk" ,gtk)
-       ("json-glib" ,json-glib)
-       ("libadwaita" ,libadwaita)
-       ("libgpg-error" ,libgpg-error)
-       ("libnotify" ,libnotify)
-       ("libsecret" ,libsecret)
-       ("libsoup" ,libsoup)
-       ("libhandy" ,libhandy)
-       ("packagekit" ,packagekit)
-       ("python" ,python)
-       ("python-pygobject" ,python-pygobject)))
+     (list bash-minimal
+           duplicity
+           gsettings-desktop-schemas
+           gtk
+           json-glib
+           libadwaita
+           libgpg-error
+           libnotify
+           libsecret
+           libsoup
+           libhandy
+           packagekit
+           python
+           python-pygobject))
     (native-inputs
-     `(("appstream-glib" ,appstream-glib)
-       ("desktop-file-utils" ,desktop-file-utils)
-       ("gettext" ,gettext-minimal)
-       ("glib" ,glib "bin")             ;for glib-compile-schemas
-       ("gobject-introspection" ,gobject-introspection)
-       ("gtk" ,gtk "bin")               ;for gtk-update-icon-cache
-       ("itstool" ,itstool)
-       ("pkg-config" ,pkg-config)
-       ("vala" ,vala)))
+     (list appstream-glib
+           desktop-file-utils
+           gettext-minimal
+           `(,glib "bin")               ;for glib-compile-schemas
+           gobject-introspection
+           `(,gtk "bin")                ;for gtk-update-icon-cache
+           itstool
+           pkg-config
+           vala))
     (home-page "https://wiki.gnome.org/Apps/DejaDup";)
     (synopsis "Simple backup tool, for regular encrypted backups")
     (description



reply via email to

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