gnu: Add julia-displayas.

* gnu/packages/julia-xyz.scm (julia-displayas): New variable.

Change-Id: I6f8321bfa75160e5371e73bccbb8fca3d23d8b2a
This commit is contained in:
Nguyễn Gia Phong 2025-12-15 16:50:54 +09:00 committed by Nguyễn Gia Phong
parent 19fc23fd89
commit 3bf3c3be70
No known key found for this signature in database
GPG key ID: 84B69CE6F3F6B767

View file

@ -6,6 +6,7 @@
;;; Copyright © 2021 jgart <jgart@dismail.de>
;;; Copyright © 2023 Sharlatan Hellseher <sharlatanus@gmail.com>
;;; Copyright © 2024, 2025 Spencer King <spencer.king@geneoscopy.com>
;;; Copyright © 2026 Nguyễn Gia Phong <cnx@loang.net>
;;;
;;; This file is part of GNU Guix.
;;;
@ -1861,6 +1862,30 @@ dictionaries where values associated with a particular key may change,
dictionaries in Julia, for improved productivity and performance.")
(license license:expat)))
(define-public julia-displayas
(package
(name "julia-displayas")
(version "0.1.6")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/tkf/DisplayAs.jl")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1a2wq22fb1lj0lmgd8lqma4y0y6w6iik2gddg440lpz3xyviw0gp"))))
(build-system julia-build-system)
(native-inputs
(list julia-aqua))
(home-page "https://tkf.github.io/DisplayAs.jl/")
(synopsis "Julia functions to show object in a chosen MIME type")
(description
"This package provides functions to show objects in a chosen MIME type.
It is also possible to use nesting in order to allow the object
to be displayed as multiple MIME types.")
(license license:expat)))
(define-public julia-distances
(package
(name "julia-distances")