[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
30/71: gnu: Add julia-pcre-jll.
From: |
guix-commits |
Subject: |
30/71: gnu: Add julia-pcre-jll. |
Date: |
Sun, 30 May 2021 05:57:38 -0400 (EDT) |
efraim pushed a commit to branch master
in repository guix.
commit 088e1a50900f3aaa77c12c7ff5eb6e5f938b01c1
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Sun May 30 11:31:15 2021 +0300
gnu: Add julia-pcre-jll.
* gnu/packages/julia-jll.scm (julia-pcre-jll): New variable.
---
gnu/packages/julia-jll.scm | 39 +++++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)
diff --git a/gnu/packages/julia-jll.scm b/gnu/packages/julia-jll.scm
index 658acc4..637fd26 100644
--- a/gnu/packages/julia-jll.scm
+++ b/gnu/packages/julia-jll.scm
@@ -38,6 +38,7 @@
#:use-module (gnu packages libffi)
#:use-module (gnu packages maths)
#:use-module (gnu packages mp3)
+ #:use-module (gnu packages pcre)
#:use-module (gnu packages tls)
#:use-module (gnu packages video)
#:use-module (gnu packages web)
@@ -952,6 +953,44 @@ build tree Yggdrasil.")
(description "This package provides a wrapper for the opus audio library.")
(license license:expat)))
+(define-public julia-pcre-jll
+ (package
+ (name "julia-pcre-jll")
+ (version "8.44.0+0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/JuliaBinaryWrappers/PCRE_jll.jl")
+ (commit (string-append "PCRE-v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0fcn8m16vy92v9dj437hzlknq9zl6sw6rckmr5gmh07sf0n3wszs"))))
+ (build-system julia-build-system)
+ (arguments
+ '(#:tests? #f ; no runtests
+ #:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'override-binary-path
+ (lambda* (#:key inputs #:allow-other-keys)
+ (map
+ (lambda (wrapper)
+ (substitute* wrapper
+ (("generate_wrapper_header.*")
+ (string-append
+ "generate_wrapper_header(\"PCRE\", \""
+ (assoc-ref inputs "pcre") "\")\n"))))
+ ;; There's a Julia file for each platform, override them all
+ (find-files "src/wrappers/" "\\.jl$")))))))
+ (inputs
+ `(("pcre" ,pcre)))
+ (propagated-inputs
+ `(("julia-jllwrappers" ,julia-jllwrappers)))
+ (home-page "https://github.com/JuliaBinaryWrappers/PCRE_jll.jl")
+ (synopsis "PCRE library wrappers")
+ (description "This package provides a wrapper for the pcre library.")
+ (license license:expat)))
+
(define-public julia-x264-jll
(package
(name "julia-x264-jll")
- 33/71: gnu: Add julia-pixman-jll., (continued)
- 33/71: gnu: Add julia-pixman-jll., guix-commits, 2021/05/30
- 37/71: gnu: Add julia-xorg-libxdmcp-jll., guix-commits, 2021/05/30
- 39/71: gnu: Add julia-libgcrypt-jll., guix-commits, 2021/05/30
- 40/71: gnu: Add julia-xorg-xtrans-jll., guix-commits, 2021/05/30
- 38/71: gnu: Add julia-libgpg-error-jll., guix-commits, 2021/05/30
- 36/71: gnu: Add julia-xorg-libxau-jll., guix-commits, 2021/05/30
- 24/71: gnu: Add julia-ffmpeg-jll., guix-commits, 2021/05/30
- 25/71: gnu: Add julia-ffmpeg., guix-commits, 2021/05/30
- 29/71: gnu: Add julia-gettext-jll., guix-commits, 2021/05/30
- 46/71: gnu: Add julia-xorg-libxext-jll., guix-commits, 2021/05/30
- 30/71: gnu: Add julia-pcre-jll.,
guix-commits <=
- 31/71: gnu: Add julia-libmount-jll., guix-commits, 2021/05/30
- 41/71: gnu: Add julia-lzo-jll., guix-commits, 2021/05/30
- 42/71: gnu: Add julia-xslt-jll., guix-commits, 2021/05/30
- 43/71: gnu: Add julia-xorg-libpthread-stubs-jll., guix-commits, 2021/05/30
- 48/71: gnu: Add julia-xorg-libxrender-jll., guix-commits, 2021/05/30
- 50/71: gnu: Add julia-xorg-libxfixes-jll., guix-commits, 2021/05/30
- 54/71: gnu: Add julia-xorg-libxinerama-jll., guix-commits, 2021/05/30
- 56/71: gnu: Add julia-glfw-jll., guix-commits, 2021/05/30
- 58/71: gnu: Add julia-wayland-protocols-jll., guix-commits, 2021/05/30
- 59/71: gnu: Add julia-xorg-libxkbfile-jll., guix-commits, 2021/05/30