diff options
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/gnome.scm | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index b2f46959e65..445e94a67ef 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm | |||
| @@ -20,6 +20,7 @@ | |||
| 20 | ;;; Copyright © 2016 Roel Janssen <roel@gnu.org> | 20 | ;;; Copyright © 2016 Roel Janssen <roel@gnu.org> |
| 21 | ;;; Copyright © 2016 Leo Famulari <leo@famulari.name> | 21 | ;;; Copyright © 2016 Leo Famulari <leo@famulari.name> |
| 22 | ;;; Copyright © 2016 Alex Griffin <a@ajgrf.com> | 22 | ;;; Copyright © 2016 Alex Griffin <a@ajgrf.com> |
| 23 | ;;; Copyright © 2016 ng0 <ng0@we.make.ritual.n0.is> | ||
| 23 | ;;; | 24 | ;;; |
| 24 | ;;; This file is part of GNU Guix. | 25 | ;;; This file is part of GNU Guix. |
| 25 | ;;; | 26 | ;;; |
| @@ -5388,3 +5389,32 @@ compiled.") | |||
| 5388 | GLib/GObject code.") | 5389 | GLib/GObject code.") |
| 5389 | (home-page "https://wiki.gnome.org/Projects/GFBGraph") | 5390 | (home-page "https://wiki.gnome.org/Projects/GFBGraph") |
| 5390 | (license license:lgpl2.1+))) | 5391 | (license license:lgpl2.1+))) |
| 5392 | |||
| 5393 | (define-public libgnomekbd | ||
| 5394 | (package | ||
| 5395 | (name "libgnomekbd") | ||
| 5396 | (version "3.6.0") | ||
| 5397 | (source (origin | ||
| 5398 | (method url-fetch) | ||
| 5399 | (uri (string-append "mirror://gnome/sources/" name "/" | ||
| 5400 | (version-major+minor version) "/" | ||
| 5401 | name "-" version ".tar.xz")) | ||
| 5402 | (sha256 | ||
| 5403 | (base32 | ||
| 5404 | "02bahnl3vaqyqyr99r9kwka84sxj8qdrz7x0bf97192dysqaa7n4")))) | ||
| 5405 | (build-system gnu-build-system) | ||
| 5406 | (native-inputs | ||
| 5407 | `(("pkg-config" ,pkg-config) | ||
| 5408 | ("glib" ,glib "bin") | ||
| 5409 | ("intltool" ,intltool))) | ||
| 5410 | (propagated-inputs | ||
| 5411 | ;; Referred to in .h files and .pc. | ||
| 5412 | `(("glib" ,glib) | ||
| 5413 | ("gtk+" ,gtk+) | ||
| 5414 | ("libxklavier" ,libxklavier))) | ||
| 5415 | (home-page "https://www.gnome.org") | ||
| 5416 | (synopsis "GNOME keyboard configuration library") | ||
| 5417 | (description | ||
| 5418 | "Libgnomekbd is a keyboard configuration library for the GNOME desktop | ||
| 5419 | environment, which can notably display keyboard layouts.") | ||
| 5420 | (license license:lgpl2.0+))) | ||
