diff options
author | ng0 <ng0@infotropique.org> | 2017-12-30 22:44:45 +0100 |
---|---|---|
committer | Danny Milosavljevic <dannym@scratchpost.org> | 2017-12-30 22:55:23 +0100 |
commit | bf7f29491db377bed6f088463f54edbdb9e68d61 (patch) | |
tree | 1b0deb0bd9d7f435e7cd95bbce6393c4819d6b3a /gnu/packages/mate.scm | |
parent | 033a2ac6917e26c5555c57acd6564fed5f263dfc (diff) | |
download | patches-bf7f29491db377bed6f088463f54edbdb9e68d61.tar patches-bf7f29491db377bed6f088463f54edbdb9e68d61.tar.gz |
gnu: Add mate-backgrounds.
* gnu/packages/mate.scm (mate-backgrounds): New variable.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
Diffstat (limited to 'gnu/packages/mate.scm')
-rw-r--r-- | gnu/packages/mate.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm index 484fd373d5..1b1da05797 100644 --- a/gnu/packages/mate.scm +++ b/gnu/packages/mate.scm @@ -1027,6 +1027,29 @@ sessions, panels, menus, file management, and preferences.") "Mate Calc is the GTK+ calculator application for the MATE Desktop.") (license license:gpl2+))) +(define-public mate-backgrounds + (package + (name "mate-backgrounds") + (version "1.18.0") + (source + (origin + (method url-fetch) + (uri (string-append "https://pub.mate-desktop.org/releases/" + (version-major+minor version) "/" + name "-" version ".tar.xz")) + (sha256 + (base32 + "06q8ksjisijps2wn959arywsimhzd3j35mqkr048c26ck24d60zi")))) + (build-system glib-or-gtk-build-system) + (native-inputs + `(("intltool" ,intltool))) + (home-page "https://mate-desktop.org/") + (synopsis "Calculator for MATE") + (description + "This package contains a collection of graphics files which +can be used as backgrounds in the MATE Desktop environment.") + (license license:gpl2+))) + (define-public mate (package (name "mate") |