[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
13/71: gnu: Add julia-bzip2-jll.
From: |
guix-commits |
Subject: |
13/71: gnu: Add julia-bzip2-jll. |
Date: |
Sun, 30 May 2021 05:57:32 -0400 (EDT) |
efraim pushed a commit to branch master
in repository guix.
commit 76cdb2b821ba6bcce36a0c712bf8c90f84f08dd0
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Sun May 30 10:48:06 2021 +0300
gnu: Add julia-bzip2-jll.
* gnu/packages/julia-jll.scm (julia-bzip2-jll): New variable.
---
gnu/packages/julia-jll.scm | 40 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 40 insertions(+)
diff --git a/gnu/packages/julia-jll.scm b/gnu/packages/julia-jll.scm
index 319b8fd..05f5d2a 100644
--- a/gnu/packages/julia-jll.scm
+++ b/gnu/packages/julia-jll.scm
@@ -38,6 +38,46 @@
;;; TODO: Remove this autogenerated source package
;;; and build it from realse source using
<https://github.com/JuliaPackaging/Yggdrasil/>
+(define-public julia-bzip2-jll
+ (package
+ (name "julia-bzip2-jll")
+ (version "1.0.7+0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/JuliaBinaryWrappers/Bzip2_jll.jl")
+ (commit (string-append "Bzip2-v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "188ngx4axdqr55ahv2xssl3cf699l1sxi41j336m9sw8plf4hhk8"))))
+ (build-system julia-build-system)
+ (arguments
+ '(#:tests? #f ; No runtests.jl
+ #: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(\"Bzip2\", \""
+ (assoc-ref inputs "bzip2") "\")\n"))))
+ ;; There's a Julia file for each platform, override them all
+ (find-files "src/wrappers/" "\\.jl$"))
+ #t)))))
+ (inputs
+ `(("bzip2" ,bzip2)))
+ (propagated-inputs
+ `(("julia-jllwrappers" ,julia-jllwrappers)))
+ (home-page "https://github.com/JuliaBinaryWrappers/Bzip2_jll.jl")
+ (synopsis "Bzip2 binary wrappers")
+ (description "This Julia module provides a wrapper for the @code{Bzip2}
+compression program.")
+ (license license:expat)))
+
(define-public julia-compilersupportlibraries-jll
(package
(name "julia-compilersupportlibraries-jll")
- 06/71: gnu: julia-openspecfun-jll: Move to (gnu packages julia-jll)., (continued)
- 06/71: gnu: julia-openspecfun-jll: Move to (gnu packages julia-jll)., guix-commits, 2021/05/30
- 07/71: gnu: julia-zlib-jll: Move to (gnu packages julia-jll)., guix-commits, 2021/05/30
- 09/71: gnu: julia-libpng-jll: Move to (gnu packages julia-jll)., guix-commits, 2021/05/30
- 12/71: gnu: Add julia-x264-jll., guix-commits, 2021/05/30
- 08/71: gnu: julia-zstd-jll: Move to (gnu packages julia-jll)., guix-commits, 2021/05/30
- 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 <=
- 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