gnu: guile-jsonld: Improve package style.
* gnu/packages/guile-xyz.scm (guile-jsonld): Improve overall indentation. [propagated-inputs]: Remove labels. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
parent
ebecfa55d5
commit
07854c91d8
|
@ -4671,8 +4671,7 @@ manipulating graphs and datasets.")
|
||||||
(package
|
(package
|
||||||
(name "guile-jsonld")
|
(name "guile-jsonld")
|
||||||
(version "1.0.2")
|
(version "1.0.2")
|
||||||
(source
|
(source (origin
|
||||||
(origin
|
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://framagit.org/tyreunom/guile-jsonld")
|
(url "https://framagit.org/tyreunom/guile-jsonld")
|
||||||
|
@ -4683,21 +4682,20 @@ manipulating graphs and datasets.")
|
||||||
"1ryyvh71899z2inivqglb8d78zzp1sd0wv9a56kvcmrxf1966z6r"))))
|
"1ryyvh71899z2inivqglb8d78zzp1sd0wv9a56kvcmrxf1966z6r"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f)); require network
|
(list #:tests? #f)) ; require network
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("guile-gnutls" ,guile-gnutls)
|
(list guile-gnutls guile-json-4 guile-rdf))
|
||||||
("guile-json" ,guile-json-4)
|
|
||||||
("guile-rdf" ,guile-rdf)))
|
|
||||||
(inputs
|
(inputs
|
||||||
(list guile-3.0))
|
(list guile-3.0))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list automake autoconf pkg-config texinfo))
|
(list automake autoconf pkg-config texinfo))
|
||||||
(home-page "https://framagit.org/tyreunom/guile-jsonld")
|
(home-page "https://framagit.org/tyreunom/guile-jsonld")
|
||||||
(synopsis "Guile implementation of the JsonLD API specification")
|
(synopsis "Guile implementation of the JsonLD API specification")
|
||||||
(description "Guile JsonLD is an implementation of the JsonLD (Json for
|
(description
|
||||||
Linked Data) API defined by the W3C for GNU Guile. It allows you to express links
|
"Guile JsonLD is an implementation of the JsonLD (Json for Linked Data)
|
||||||
between data, in a way that is very similar to WikiData or RDF for instance.
|
API defined by the W3C for GNU Guile. It allows you to express links between
|
||||||
An object can have relations (in the form of an IRI) that relates it to one or
|
data, in a way that is very similar to WikiData or RDF for instance. An
|
||||||
|
object can have relations (in the form of an IRI) that relates it to one or
|
||||||
more objects or strings, represented by a Json object or an IRI.")
|
more objects or strings, represented by a Json object or an IRI.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
|
|
Reference in New Issue