diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-07-12 22:48:08 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-07-12 23:23:27 -0400 |
commit | c8f32406e8778c803eddeefe0f510733a9018e67 (patch) | |
tree | 9e1839f776853ffefd4aa6053125b869b44e4074 | |
parent | cabfbcf6e073c755d458ad3158aedd2221572903 (diff) |
gnu: deja-dup: Use new style inputs.
* gnu/packages/gnome.scm (deja-dup)[inputs, native-inputs]: Use new style.
-rw-r--r-- | gnu/packages/gnome.scm | 46 |
1 files 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 |