diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-07-17 14:52:31 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-07-17 16:03:56 +0200 |
commit | ef421791c500d869f399da66503cbfd8c003717c (patch) | |
tree | 15af533bc36fd2faabd08625c9216da0c1d2bd85 /gnu/packages/rdf.scm | |
parent | 746d33847bc630894968c444ef4449c7d61b7e54 (diff) | |
download | patches-ef421791c500d869f399da66503cbfd8c003717c.tar patches-ef421791c500d869f399da66503cbfd8c003717c.tar.gz |
gnu: sord: Propagate serd.
* gnu/packages/rdf.scm (sord)[inputs]: Move serd from here…
[propagated-inputs]: …to here.
Diffstat (limited to 'gnu/packages/rdf.scm')
-rw-r--r-- | gnu/packages/rdf.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/rdf.scm b/gnu/packages/rdf.scm index 3e2db7acdf..1f2b713d2d 100644 --- a/gnu/packages/rdf.scm +++ b/gnu/packages/rdf.scm @@ -1,7 +1,7 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2013, 2014, 2015 Andreas Enge <andreas@enge.fr> ;;; Copyright © 2015, 2016, 2018 Ricardo Wurmus <rekado@elephly.net> -;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr> +;;; Copyright © 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2019 Julien Lepiller <julien@lepiller.eu> ;;; ;;; This file is part of GNU Guix. @@ -309,7 +309,7 @@ ideal (e.g. in LV2 implementations or embedded applications).") "13fshxwpipjrvsah1m2jw1kf022z2q5vpw24bzcznglgvms13x89")))) (build-system waf-build-system) (arguments - `(#:tests? #f ; no check target + `(#:tests? #f ; no check target #:phases (modify-phases %standard-phases (add-before @@ -319,10 +319,10 @@ ideal (e.g. in LV2 implementations or embedded applications).") (string-append "-Wl,-rpath=" (assoc-ref outputs "out") "/lib")) #t))))) - (inputs - `(("serd" ,serd))) (native-inputs `(("pkg-config" ,pkg-config))) + (propagated-inputs + `(("serd" ,serd))) ; required by sord-0.pc (home-page "https://drobilla.net/software/sord/") (synopsis "C library for storing RDF data in memory") (description |