[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 5/6] gnu: Add gnome-desktop.
From: |
Cyril Roelandt |
Subject: |
[PATCH 5/6] gnu: Add gnome-desktop. |
Date: |
Sat, 30 Nov 2013 02:13:35 +0100 |
* gnu/packages/gnome.scm (gnome-desktop): New variable.
---
gnu/packages/gnome.scm | 42 ++++++++++++++++++++++++++++++++++++++++++
1 file changed, 42 insertions(+)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 96234dc..7d483be 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -27,6 +27,7 @@
#:use-module (gnu packages gtk)
#:use-module (gnu packages pdf)
#:use-module (gnu packages ghostscript)
+ #:use-module (gnu packages iso-codes)
#:use-module (gnu packages libcanberra)
#:use-module (gnu packages libffi)
#:use-module (gnu packages libpng)
@@ -71,6 +72,47 @@ Desktop. It is designed to be as simple as possible and has
some unique
features to enable users to create their discs easily and quickly.")
(license gpl2+)))
+(define-public gnome-desktop
+ (package
+ (name "gnome-desktop")
+ (version "3.10.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://gnome/sources/" name "/3.10/"
+ name "-" version ".tar.xz"))
+ (sha256
+ (base32
+ "0p5p6wvmy5zvcdnmp5h2biz7rjrcw99chq5kkwcnb68flcmkb1ry"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("intltool" ,intltool)
+ ("gdk-pixbuf" ,gdk-pixbuf)
+ ("glib" ,glib)
+ ("gsettings-desktop-schemas" ,gsettings-desktop-schemas)
+ ("gtk+" ,gtk+)
+ ("iso-codes" ,iso-codes)
+ ("itstool" ,itstool)
+ ("libx11" ,libx11)
+ ("libxext" ,libxext)
+ ("libxkbfile" ,libxkbfile)
+ ("libxrandr" ,libxrandr)
+ ("pkg-config" ,pkg-config)
+ ("xkeyboard-config" ,xkeyboard-config)))
+ (home-page "https://www.gnome.org/")
+ (synopsis
+ "The libgnome-desktop library, the gnome-about program and some
+desktop-wide documents.")
+ (description
+ "The libgnome-desktop library provides API shared by several applications
+on the desktop, but that cannot live in the platform for various reasons. There
+is no API or ABI guarantee, although we are doing our best to provide
+stability. Documentation for the API is available with gtk-doc.
+
+The gnome-about program helps find which version of GNOME is installed.")
+ ; Some bits under the LGPL.
+ (license gpl2+)))
+
(define-public gnome-doc-utils
(package
(name "gnome-doc-utils")
--
1.8.4.rc3
- [PATCH 1/6] gnu: gobject-introspection: look for 'gcc' when no compiler seems available., (continued)
- [PATCH 1/6] gnu: gobject-introspection: look for 'gcc' when no compiler seems available., Cyril Roelandt, 2013/11/29
- [PATCH 3/6] gnu: Add libpeas., Cyril Roelandt, 2013/11/29
- [PATCH 2/6] gnu: gtk+: enable introspection., Cyril Roelandt, 2013/11/29
- [PATCH 4/6] gnu: Add iso-codes., Cyril Roelandt, 2013/11/29
- [PATCH 6/6] gnu: Add eog., Cyril Roelandt, 2013/11/29
- [PATCH 5/6] gnu: Add gnome-desktop.,
Cyril Roelandt <=