diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2021-04-10 14:42:03 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2021-04-10 14:42:03 +0200 |
commit | f91e1046c4050c0947429b9141c80024c261d7b5 (patch) | |
tree | d4aaf7d053f0edb926113dbd5856f19bd9809125 /gnu | |
parent | e1f223c5793596e67cc1d7b758db0268513fdb1b (diff) |
gnu: raptor2: Use HTTPS home page and source URI.
* gnu/packages/rdf.scm (raptor2)[home-page]: Use HTTPS URI.
[source]: Use HTTPS URI.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/rdf.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/rdf.scm b/gnu/packages/rdf.scm index 0841c1fd8d..0baed8fc17 100644 --- a/gnu/packages/rdf.scm +++ b/gnu/packages/rdf.scm @@ -61,7 +61,7 @@ (version "2.0.15") (source (origin (method url-fetch) - (uri (string-append "http://download.librdf.org/source/" name + (uri (string-append "https://download.librdf.org/source/" name "-" version ".tar.gz")) (patches (search-patches "raptor2-heap-overflow.patch")) @@ -76,7 +76,7 @@ ("zlib" ,zlib))) (arguments `(#:parallel-tests? #f)) - (home-page "http://librdf.org/raptor/") + (home-page "https://librdf.org/raptor/") (synopsis "RDF syntax library") (description "Raptor is a C library providing a set of parsers and serialisers that generate Resource Description Framework (RDF) triples |