diff options
author | ng0 <ng0@infotropique.org> | 2017-08-14 17:18:06 +0000 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2017-09-12 09:55:21 +0300 |
commit | a8376ca5bf25de00558c4b947fe548b442073a7f (patch) | |
tree | 0be1629845f32ac7c25e38ddd149bd00541c9bff /gnu/packages/mate.scm | |
parent | 4d26a340b58dfd73e0d87d2a4f37e185e11ef8f1 (diff) | |
download | patches-a8376ca5bf25de00558c4b947fe548b442073a7f.tar patches-a8376ca5bf25de00558c4b947fe548b442073a7f.tar.gz |
gnu: Add mate-session-manager.
* gnu/packages/mate.scm (mate-session-manager): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
Diffstat (limited to 'gnu/packages/mate.scm')
-rw-r--r-- | gnu/packages/mate.scm | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm index 600f977bac..94f62801f9 100644 --- a/gnu/packages/mate.scm +++ b/gnu/packages/mate.scm @@ -210,6 +210,37 @@ in a single window (tabs) and supports management of different configurations (profiles).") (license license:gpl3))) +(define-public mate-session-manager + (package + (name "mate-session-manager") + (version "1.18.1") + (source + (origin + (method url-fetch) + (uri (string-append "https://pub.mate-desktop.org/releases/" + (version-major+minor version) "/" + name "-" version ".tar.xz")) + (sha256 + (base32 + "0i0xq6041x2qmb26x9bawx0qpfkgjn6x9w3phnm9s7rc4s0z20ll")))) + (build-system glib-or-gtk-build-system) + (native-inputs + `(("pkg-config" ,pkg-config) + ("intltool" ,intltool) + ("xtrans" ,xtrans) + ("gobject-introspection" ,gobject-introspection))) + (inputs + `(("gtk+" ,gtk+) + ("dbus-glib" ,dbus-glib) + ("libsm" ,libsm) + ("mate-desktop" ,mate-desktop))) + (home-page "https://mate-desktop.org/") + (synopsis "Session manager for MATE") + (description + "Mate-session contains the MATE session manager, as well as a +configuration program to choose applications starting on login.") + (license license:gpl2))) + (define-public mate-menus (package (name "mate-menus") |