diff --git a/gnu/packages/pcre.scm b/gnu/packages/pcre.scm index ab48168567..bc0e285001 100644 --- a/gnu/packages/pcre.scm +++ b/gnu/packages/pcre.scm @@ -7,6 +7,8 @@ ;;; Copyright © 2017 Ludovic Courtès ;;; Copyright © 2017 Efraim Flashner ;;; Copyright © 2018 Tobias Geerinckx-Rice +;;; Copyright © 2021 Jean-Baptiste Volatier +;;; Copyright © 2021 Simon Tournier ;;; ;;; This file is part of GNU Guix. ;;; @@ -125,3 +127,16 @@ 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 "https://www.pcre.org/"))) + +(define-public pcre2-10.36 + (package + (inherit pcre2) + (name "pcre2") + (version "10.36") + (source (origin + (method url-fetch) + (uri (string-append "mirror://sourceforge/pcre/pcre2/" + version "/pcre2-" version ".tar.bz2")) + (sha256 + (base32 + "0p3699msps07p40g9426lvxa3b41rg7k2fn7qxl2jm0kh4kkkvx9"))))))