From 5f2e568d8d47a4a37810f1412f892dc4035c6ceb Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Mon, 15 Feb 2016 05:33:25 +0000 Subject: gnu: Add gconfmm. * gnu/packages/gnome.scm (gconfmm): New variable. --- gnu/packages/gnome.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 49e61973a0..d04bc4a15a 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -1068,6 +1068,35 @@ is intended for user preferences; not arbitrary data storage.") (license license:lgpl2.0+))) +(define-public gconfmm + (package + (name "gconfmm") + (version "2.28.3") + (source (origin + (method url-fetch) + (uri + (let ((upstream-name "gconfmm")) + (string-append "mirror://gnome/sources/" upstream-name "/" + (version-major+minor version) "/" + upstream-name "-" version ".tar.xz"))) + (sha256 + (base32 "0a4jq0j2w03m4waq56b9c1798bd5xjh2kys7jlr8ayx8q4ljvgfp")))) + (build-system gnu-build-system) + (propagated-inputs `(("gconf" ,gconf))) + (arguments + '(#:configure-flags '("CXXFLAGS=-std=c++11"))) + (native-inputs + `(("intltool" ,intltool) + ("pkg-config" ,pkg-config) + ("glib" ,glib) + ("glibmm" ,glibmm))) + (home-page "http://www.gtkmm.org/") + (synopsis "C++ interface for the GConf client API") + (description "gconfmm is the official C++ interface for the GConf client +API for storing and retrieving configuration data.") + (license license:lgpl2.0+))) + + (define-public gnome-mime-data (package (name "gnome-mime-data") -- cgit v1.2.3