mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add sord.
* gnu/packages/rdf.scm (sord): New variable.
This commit is contained in:
parent
f65784d50e
commit
a035e6ffef
1 changed files with 24 additions and 0 deletions
|
@ -254,6 +254,30 @@ (define-public serd
|
|||
ideal (e.g. in LV2 implementations or embedded applications).")
|
||||
(license isc)))
|
||||
|
||||
(define-public sord
|
||||
(package
|
||||
(name "sord")
|
||||
(version "0.12.2")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "http://download.drobilla.net/sord-"
|
||||
version
|
||||
".tar.bz2"))
|
||||
(sha256
|
||||
(base32
|
||||
"0rq7vafdv4vsxi6xk9zf5shr59w3kppdhqbj78185rz5gp9kh1dx"))))
|
||||
(build-system waf-build-system)
|
||||
(arguments `(#:tests? #f)) ; no check target
|
||||
(inputs
|
||||
`(("serd" ,serd)))
|
||||
(native-inputs
|
||||
`(("pkg-config" ,pkg-config)))
|
||||
(home-page "http://drobilla.net/software/sord/")
|
||||
(synopsis "C library for storing RDF data in memory")
|
||||
(description
|
||||
"Sord is a lightweight C library for storing RDF data in memory.")
|
||||
(license isc)))
|
||||
|
||||
(define-public soprano
|
||||
(package
|
||||
(name "soprano")
|
||||
|
|
Loading…
Reference in a new issue