[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
21/71: gnu: Add julia-openssl-jll.
From: |
guix-commits |
Subject: |
21/71: gnu: Add julia-openssl-jll. |
Date: |
Sun, 30 May 2021 05:57:35 -0400 (EDT) |
efraim pushed a commit to branch master
in repository guix.
commit a18d0aac7ae02cff87aeda0ea0db24c854084910
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Sun May 30 11:15:23 2021 +0300
gnu: Add julia-openssl-jll.
* gnu/packages/julia-jll.scm (julia-openssl-jll): New variable.
---
gnu/packages/julia-jll.scm | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
diff --git a/gnu/packages/julia-jll.scm b/gnu/packages/julia-jll.scm
index 40d1d2b..acdfb92 100644
--- a/gnu/packages/julia-jll.scm
+++ b/gnu/packages/julia-jll.scm
@@ -671,6 +671,42 @@ originating @code{build_tarballs.jl} script can be found
on the community
build tree Yggdrasil.")
(license license:expat))))
+(define-public julia-openssl-jll
+ (package
+ (name "julia-openssl-jll")
+ (version "1.1.1+2")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/JuliaBinaryWrappers/OpenSSL_jll.jl")
+ (commit (string-append "OpenSSL-v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0qly9pjhah95jdgvckkj615yfbsavvsygpfq9sqz4716q4zv0d5z"))))
+ (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
+ (("artifact\"OpenSSL\"")
+ (string-append "\"" (assoc-ref inputs "openssl") "\""))))
+ ;; There's a Julia file for each platform, override them all
+ (find-files "src/wrappers/" "\\.jl$")))))))
+ (inputs
+ `(("openssl" ,openssl)))
+ (propagated-inputs
+ `(("julia-jllwrappers" ,julia-jllwrappers)))
+ (home-page "https://github.com/JuliaBinaryWrappers/OpenSSL_jll.jl")
+ (synopsis "Openssl library wrappers")
+ (description "This package provides a wrapper for the openssl library.")
+ (license license:expat)))
+
(define-public julia-x264-jll
(package
(name "julia-x264-jll")
- 11/71: gnu: julia-imagemagick-jll: Move to (gnu packages julia-jll)., (continued)
- 11/71: gnu: julia-imagemagick-jll: Move to (gnu packages julia-jll)., guix-commits, 2021/05/30
- 14/71: gnu: Add julia-fribidi-jll., guix-commits, 2021/05/30
- 17/71: gnu: Add julia-lame-jll., guix-commits, 2021/05/30
- 19/71: gnu: Add julia-libvorbis-jll., guix-commits, 2021/05/30
- 10/71: gnu: julia-libtiff-jll: Move to (gnu packages julia-jll)., guix-commits, 2021/05/30
- 13/71: gnu: Add julia-bzip2-jll., guix-commits, 2021/05/30
- 15/71: gnu: Add julia-freetype2-jll., guix-commits, 2021/05/30
- 16/71: gnu: Add julia-libfdk-aac-jll., guix-commits, 2021/05/30
- 18/71: gnu: Add julia-ogg-jll., guix-commits, 2021/05/30
- 20/71: gnu: Add julia-x265-jll., guix-commits, 2021/05/30
- 21/71: gnu: Add julia-openssl-jll.,
guix-commits <=
- 22/71: gnu: Add julia-opus-jll., guix-commits, 2021/05/30
- 26/71: gnu: Add julia-libiconv-jll., guix-commits, 2021/05/30
- 27/71: gnu: Add julia-libffi-jll., guix-commits, 2021/05/30
- 28/71: gnu: Add julia-xml2-jll., guix-commits, 2021/05/30
- 34/71: gnu: Add julia-libuuid-jll., guix-commits, 2021/05/30
- 35/71: gnu: Add julia-expat-jll., guix-commits, 2021/05/30
- 23/71: gnu: Add julia-libass-jll., guix-commits, 2021/05/30
- 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