diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-01-13 20:25:10 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-01-13 21:25:40 +0100 |
commit | 265c31f5a377851eb583dfeaaaae6132e085cfac (patch) | |
tree | 1352f39b46f1d28211b4f0471312b418be65d225 /gnu/packages/pcre.scm | |
parent | 7a0ba651a6e7979df08d5cf897bb2164398f825f (diff) | |
download | guix-265c31f5a377851eb583dfeaaaae6132e085cfac.tar guix-265c31f5a377851eb583dfeaaaae6132e085cfac.tar.gz |
gnu: pcre: Use HTTPS for home pages.
* gnu/packages/pcre.scm (pcre, pcre2)[home-page]: Use HTTPS.
Diffstat (limited to 'gnu/packages/pcre.scm')
-rw-r--r-- | gnu/packages/pcre.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/pcre.scm b/gnu/packages/pcre.scm index 574ae4a6ba..0cfde15d1c 100644 --- a/gnu/packages/pcre.scm +++ b/gnu/packages/pcre.scm @@ -71,7 +71,7 @@ pattern matching using the same syntax and semantics as Perl 5. PCRE has its own native API, as well as a set of wrapper functions that correspond to the POSIX regular expression API.") (license license:bsd-3) - (home-page "http://www.pcre.org/"))) + (home-page "https://www.pcre.org/"))) (define pcre-8.41 (package @@ -128,4 +128,4 @@ pattern matching using the same syntax and semantics as Perl 5. PCRE has its own native API, as well as a set of wrapper functions that correspond to the POSIX regular expression API.") (license license:bsd-3) - (home-page "http://www.pcre.org/"))) + (home-page "https://www.pcre.org/"))) |