[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
12/13: gnu: Add mate-control-center.
From: |
Efraim Flashner |
Subject: |
12/13: gnu: Add mate-control-center. |
Date: |
Tue, 12 Sep 2017 02:57:32 -0400 (EDT) |
efraim pushed a commit to branch master
in repository guix.
commit 16cd07c163f6d679d00b48867a9d551270adf0c6
Author: ng0 <address@hidden>
Date: Wed Aug 23 18:36:16 2017 +0000
gnu: Add mate-control-center.
* gnu/packages/mate.scm (mate-control-center): New variable.
Signed-off-by: Efraim Flashner <address@hidden>
---
gnu/packages/mate.scm | 65 +++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 65 insertions(+)
diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm
index b8b4056..ca1872a 100644
--- a/gnu/packages/mate.scm
+++ b/gnu/packages/mate.scm
@@ -635,6 +635,71 @@ icons on the MATE desktop. It works on local and remote
filesystems.")
;; for us.
(license license:gpl2+)))
+(define-public mate-control-center
+ (package
+ (name "mate-control-center")
+ (version "1.18.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "https://pub.mate-desktop.org/releases/"
+ (version-major+minor version) "/"
+ name "-" version ".tar.xz"))
+ (sha256
+ (base32
+ "0flnn0h8f5aqyccwrlv7qxchvr3kqmlfdga6wq28d55zkpv5m7dl"))))
+ (build-system glib-or-gtk-build-system)
+ (native-inputs
+ `(("pkg-config" ,pkg-config)
+ ("intltool" ,intltool)
+ ("yelp-tools" ,yelp-tools)
+ ("desktop-file-utils" ,desktop-file-utils)
+ ("kbproto" ,kbproto)
+ ("randrproto" ,randrproto)
+ ("renderproto" ,renderproto)
+ ("scrnsaverproto" ,scrnsaverproto)
+ ("xextpro" ,xextproto)
+ ("xproto" ,xproto)
+ ("xmodmap" ,xmodmap)
+ ("gobject-introspection" ,gobject-introspection)))
+ (inputs
+ `(("atk" ,atk)
+ ("cairo" ,cairo)
+ ("caja" ,caja)
+ ("dconf" ,dconf)
+ ("dbus" ,dbus)
+ ("dbus-glib" ,dbus-glib)
+ ("fontconfig" ,fontconfig)
+ ("freetype" ,freetype)
+ ("glib" ,glib)
+ ("gtk+" ,gtk+)
+ ("libcanberra" ,libcanberra)
+ ("libmatekbd" ,libmatekbd)
+ ("libx11" ,libx11)
+ ("libxcursor" ,libxcursor)
+ ("libxext" ,libxext)
+ ("libxi" ,libxi)
+ ("libxklavier" ,libxklavier)
+ ("libxml2" ,libxml2)
+ ("libxrandr" ,libxrandr)
+ ("libxrender" ,libxrender)
+ ("libxscrnsaver" ,libxscrnsaver)
+ ("marco" ,marco)
+ ("mate-desktop" ,mate-desktop)
+ ("mate-menus" ,mate-menus)
+ ("mate-settings-daemon" ,mate-settings-daemon)
+ ("pango" ,pango)
+ ("startup-notification" ,startup-notification)))
+ (propagated-inputs
+ `(("gdk-pixbuf" ,gdk-pixbuf+svg) ; mate-slab.pc
+ ("librsvg" ,librsvg))) ; mate-slab.pc
+ (home-page "https://mate-desktop.org/")
+ (synopsis "MATE Desktop configuration tool")
+ (description
+ "MATE control center is MATE's main interface for configuration
+of various aspects of your desktop.")
+ (license license:gpl2+)))
+
(define-public marco
(package
(name "marco")
- 03/13: gnu: Add mate-terminal., (continued)
- 03/13: gnu: Add mate-terminal., Efraim Flashner, 2017/09/12
- 09/13: gnu: Add mate-settings-daemon., Efraim Flashner, 2017/09/12
- 07/13: gnu: Add libmatemixer., Efraim Flashner, 2017/09/12
- 11/13: gnu: Add mate-media., Efraim Flashner, 2017/09/12
- 13/13: gnu: Add mate., Efraim Flashner, 2017/09/12
- 02/13: gnu: Add caja., Efraim Flashner, 2017/09/12
- 05/13: gnu: Add mate-session-manager., Efraim Flashner, 2017/09/12
- 06/13: gnu: Add mate-panel., Efraim Flashner, 2017/09/12
- 08/13: gnu: Add libmatekbd., Efraim Flashner, 2017/09/12
- 10/13: gnu: Add mate-applets., Efraim Flashner, 2017/09/12
- 12/13: gnu: Add mate-control-center.,
Efraim Flashner <=