gnu: Add julia-mimes.

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

Change-Id: I4e87dc7b2abdb32f9ee5ab06a4876349177c101e
This commit is contained in:
Nguyễn Gia Phong 2025-12-15 21:11:38 +09:00 committed by Nguyễn Gia Phong
parent f5ab4f5399
commit e811d17c9f
No known key found for this signature in database
GPG key ID: 84B69CE6F3F6B767

View file

@ -4637,6 +4637,30 @@ displayed where.")
format to arrange into rows and columns of cells.")
(license license:expat)))
(define-public julia-mimes
(package
(name "julia-mimes")
(version "1.1.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/JuliaWeb/MIMEs.jl")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0xc0dni6x2121wlwckkxsnxswndgy86gz6xj0zhmjgx9dwgjdjs3"))))
(build-system julia-build-system)
(native-inputs
(list julia-jive))
(home-page "https://github.com/JuliaWeb/MIMEs.jl")
(synopsis "Mapping between MIME types and file extensions")
(description
"This package provides transformations between file extensions
and MIME types, with bonus features like text encoding detection
and compression recommendation.")
(license license:expat)))
(define-public julia-missings
(package
(name "julia-missings")