diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2021-05-30 10:36:55 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2021-05-30 12:55:49 +0300 |
commit | 4a1d456a99948b75be078146b44b6e89880b9bc4 (patch) | |
tree | 60b5d3938508f7b396e92c7091dc9d2a7c59b2d4 /gnu/packages/julia-jll.scm | |
parent | fda20c75216c8459165107460b8ed6cc7cb5f292 (diff) | |
download | guix-4a1d456a99948b75be078146b44b6e89880b9bc4.tar.gz |
gnu: julia-zstd-jll: Move to (gnu packages julia-jll).
* gnu/packages/julia-xyz.scm (julia-zstd-jll): Move to ... * gnu/packages/julia-jll.scm: ... here.
Diffstat (limited to 'gnu/packages/julia-jll.scm')
-rw-r--r-- | gnu/packages/julia-jll.scm | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/gnu/packages/julia-jll.scm b/gnu/packages/julia-jll.scm index 9d6d692f8a..15a1808df2 100644 --- a/gnu/packages/julia-jll.scm +++ b/gnu/packages/julia-jll.scm @@ -318,3 +318,41 @@ build tree Yggdrasil.") (synopsis "Zlib library wrappers") (description "This package provides a wrapper for Zlib.") (license license:expat))) + +(define-public julia-zstd-jll + (package + (name "julia-zstd-jll") + (version "1.5.0+0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/JuliaBinaryWrappers/Zstd_jll.jl") + (commit (string-append "Zstd-v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15g5wsvga4p9bjmx97xqwqdnfzfbwfl6c4a9iaphcncwgcrnw6y6")))) + (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(\"Zstd\", \"" + (assoc-ref inputs "zstd:lib") "\")\n")))) + ;; There's a Julia file for each platform, override them all + (find-files "src/wrappers/" "\\.jl$"))))))) + (inputs + `(("zstd:lib" ,zstd "lib"))) + (propagated-inputs + `(("julia-jllwrappers" ,julia-jllwrappers))) + (home-page "https://github.com/JuliaBinaryWrappers/Zstd_jll.jl") + (synopsis "Zstd library wrappers") + (description "This package provides a wrapper for the zstd library.") + (license license:expat))) |