mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add ocaml-pcre.
* gnu/packages/ocaml.scm (ocaml-pcre): New variable.
This commit is contained in:
parent
0e9e94b7ff
commit
f8a12de1cb
1 changed files with 36 additions and 0 deletions
|
@ -40,6 +40,7 @@ (define-module (gnu packages ocaml)
|
||||||
#:use-module (gnu packages m4)
|
#:use-module (gnu packages m4)
|
||||||
#:use-module (gnu packages multiprecision)
|
#:use-module (gnu packages multiprecision)
|
||||||
#:use-module (gnu packages ncurses)
|
#:use-module (gnu packages ncurses)
|
||||||
|
#:use-module (gnu packages pcre)
|
||||||
#:use-module (gnu packages perl)
|
#:use-module (gnu packages perl)
|
||||||
#:use-module (gnu packages pkg-config)
|
#:use-module (gnu packages pkg-config)
|
||||||
#:use-module (gnu packages python)
|
#:use-module (gnu packages python)
|
||||||
|
@ -1825,3 +1826,38 @@ (define-public ocaml-batteries
|
||||||
every compliant installation of OCaml and organize these libraries into a
|
every compliant installation of OCaml and organize these libraries into a
|
||||||
hierarchy of modules.")
|
hierarchy of modules.")
|
||||||
(license license:lgpl2.1+)))
|
(license license:lgpl2.1+)))
|
||||||
|
|
||||||
|
(define-public ocaml-pcre
|
||||||
|
(package
|
||||||
|
(name "ocaml-pcre")
|
||||||
|
(version "7.2.3")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "https://github.com/mmottl/pcre-ocaml/archive"
|
||||||
|
"/v" version ".tar.gz"))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0rj6dw79px4sj2kq0iss2nzq3rnsn9wivvc0f44wa1mppr6njfb3"))))
|
||||||
|
(build-system ocaml-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'install 'link-lib
|
||||||
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
|
(let* ((out (assoc-ref outputs "out"))
|
||||||
|
(stubs (string-append out "/lib/ocaml/site-lib/stubslibs"))
|
||||||
|
(lib (string-append out "/lib/ocaml/site-lib/pcre")))
|
||||||
|
(mkdir-p stubs)
|
||||||
|
(symlink (string-append lib "/dllpcre_stubs.so")
|
||||||
|
(string-append stubs "/dllpcre_stubs.so"))))))))
|
||||||
|
(native-inputs
|
||||||
|
`(("batteries" ,ocaml-batteries)
|
||||||
|
("pcre:bin" ,pcre "bin")))
|
||||||
|
(propagated-inputs `(("pcre" ,pcre)))
|
||||||
|
(home-page "https://mmottl.github.io/pcre-ocaml")
|
||||||
|
(synopsis "Bindings to the Perl Compatibility Regular Expressions library")
|
||||||
|
(description "Pcre-ocaml offers library functions for string pattern
|
||||||
|
matching and substitution, similar to the functionality offered by the Perl
|
||||||
|
language.")
|
||||||
|
(license license:lgpl2.1+))); with the OCaml link exception
|
||||||
|
|
Loading…
Reference in a new issue