Skip to content
Snippets Groups Projects
Commit 607a04ae authored by Mark H Weaver's avatar Mark H Weaver
Browse files

gnu: Add gom.

* gnu/packages/gnome.scm (gom): New variable.
parent 86d6a893
No related branches found
No related tags found
No related merge requests found
...@@ -2656,3 +2656,35 @@ (define-public clutter-gst ...@@ -2656,3 +2656,35 @@ (define-public clutter-gst
implements the ClutterGstPlayer interface using playbin. Clutter is an Open implements the ClutterGstPlayer interface using playbin. Clutter is an Open
GL based interactive canvas library.") GL based interactive canvas library.")
(license license:lgpl2.0+))) (license license:lgpl2.0+)))
(define-public gom
(package
(name "gom")
(version "0.3.1")
(source
(origin
(method url-fetch)
(uri (string-append "mirror://gnome/sources/" name "/"
(version-major+minor version) "/"
name "-" version ".tar.xz"))
(sha256
(base32
"1x9qgviszzh59d009jd13k0pdxzv9w4dmwp3wszbsk3qxr3fnlbr"))))
(build-system gnu-build-system)
(native-inputs
`(("intltool" ,intltool)
("pkg-config" ,pkg-config)
("gobject-introspection" ,gobject-introspection)))
(inputs
`(("glib" ,glib)
("gdk-pixbuf" ,gdk-pixbuf)
("sqlite" ,sqlite)))
;; XXX TODO: Figure out how to run the test suite.
(arguments `(#:tests? #f))
(home-page "https://wiki.gnome.org/Projects/Gom")
(synopsis "Object mapper from GObjects to SQLite")
(description
"Gom provides an object mapper from GObjects to SQLite. It helps you
write applications that need to store structured data as well as make complex
queries upon that data.")
(license license:lgpl2.1+)))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment