[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
35/71: gnu: Add julia-expat-jll.
From: |
guix-commits |
Subject: |
35/71: gnu: Add julia-expat-jll. |
Date: |
Sun, 30 May 2021 05:57:39 -0400 (EDT) |
efraim pushed a commit to branch master
in repository guix.
commit 3d12f59d1f8437f17914d2ae0cb6b46f3b2dedae
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Sun May 30 12:08:48 2021 +0300
gnu: Add julia-expat-jll.
* gnu/packages/julia-jll.scm (julia-expat-jll): New variable.
---
gnu/packages/julia-jll.scm | 38 ++++++++++++++++++++++++++++++++++++++
1 file changed, 38 insertions(+)
diff --git a/gnu/packages/julia-jll.scm b/gnu/packages/julia-jll.scm
index 651d155..c10d371 100644
--- a/gnu/packages/julia-jll.scm
+++ b/gnu/packages/julia-jll.scm
@@ -133,6 +133,44 @@ originating @code{build_tarballs.jl} script can be found
on the community
build tree Yggdrasil.")
(license license:expat)))
+(define-public julia-expat-jll
+ (package
+ (name "julia-expat-jll")
+ (version "2.2.10+0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/JuliaBinaryWrappers/Expat_jll.jl")
+ (commit (string-append "Expat-v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0lkhkh0067lns35njpc1bqbx6653r99lrjcbgrihlln9a7k9qj1s"))))
+ (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(\"Expat\", \""
+ (assoc-ref inputs "expat") "\")\n"))))
+ ;; There's a Julia file for each platform, override them all
+ (find-files "src/wrappers/" "\\.jl$")))))))
+ (inputs
+ `(("expat" ,expat)))
+ (propagated-inputs
+ `(("julia-jllwrappers" ,julia-jllwrappers)))
+ (home-page "https://github.com/JuliaBinaryWrappers/Expat_jll.jl")
+ (synopsis "Expat library wrappers")
+ (description "This package provides a wrapper for the expat library.")
+ (license license:expat)))
+
(define-public julia-ffmpeg-jll
(package
(name "julia-ffmpeg-jll")
- 15/71: gnu: Add julia-freetype2-jll., (continued)
- 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, 2021/05/30
- 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 <=
- 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
- 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