guix-devel
[Top][All Lists]
Advanced

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

[PATCH 2/7] gnu: Add libmatekbd.


From: Fabian Harfert
Subject: [PATCH 2/7] gnu: Add libmatekbd.
Date: Fri, 19 Feb 2016 21:06:16 +0100

* gnu/packages/mate.scm (libmatekbd): New variable.
---
 gnu/packages/mate.scm | 34 +++++++++++++++++++++++++++++++++-
 1 file changed, 33 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm
index 7eb83de..ebe99cb 100644
--- a/gnu/packages/mate.scm
+++ b/gnu/packages/mate.scm
@@ -33,7 +33,8 @@
   #:use-module (gnu packages xml)
   #:use-module (gnu packages python)
   #:use-module (gnu packages freedesktop)
-  #:use-module (gnu packages polkit))
+  #:use-module (gnu packages polkit)
+  #:use-module (gnu packages iso-codes))
 
 (define-public mate-icon-theme
   (package
@@ -239,3 +240,34 @@ assorted menu related utility programs.")
      "This package contains extensions for PolicyKit used by the MATE desktop
 environment.")
     (license license:lgpl2.0+)))
+
+(define-public libmatekbd
+  (package
+    (name "libmatekbd")
+    (version "1.12.1")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "http://pub.mate-desktop.org/releases/";
+                                  (version-major+minor version) "/"
+                                  name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "18jfnrxpdhpqish8a0fzcgndbqb8a0z5p8vahd3spl1zn97lk82q"))))
+    (build-system gnu-build-system)
+    (native-inputs
+     `(("intltool" ,intltool)
+       ("pkg-config" ,pkg-config)
+       ("glib:bin" ,glib "bin")))
+    (inputs
+     `(("dconf" ,dconf)
+       ("iso-codes" ,iso-codes)))
+    (propagated-inputs
+     `(("gtk+" ,gtk+-2)
+       ("glib" ,glib)
+       ("libxklavier" ,libxklavier)))
+    (home-page "http://mate-desktop.org/";)
+    (synopsis "MATE library to manage keyboard configuration")
+    (description
+     "Libmatekbd offers an API to manage the keyboard in MATE applications and
+the GUI elements to display its operations.")
+    (license license:lgpl2.0+)))
-- 
1.9.1




reply via email to

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