gnu: Add julia-cpusummary.

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

Change-Id: Icd4a37d36786d59f5b6ec0e7ee9c8d7d901cacc3
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Spencer King 2025-01-06 19:52:07 +00:00 committed by Ludovic Courtès
parent bc9b4fb591
commit 1c821f620a
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -1488,6 +1488,28 @@ (define-public julia-cpuid
CPU features with low run-time cost.")
(license license:expat)))
(define-public julia-cpusummary
(package
(name "julia-cpusummary")
(version "0.2.6")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/JuliaSIMD/CPUSummary.jl")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "06kmmnhhcdgm538ax6lblklrih91p2ligg328kljq144j8s6cixm"))))
(build-system julia-build-system)
(propagated-inputs (list julia-cpuid julia-ifelse julia-precompiletools
julia-static))
(home-page "https://github.com/JuliaSIMD/CPUSummary.jl")
(synopsis "Provides a summary of CPU features")
(description
"This package provides a summary of available CPU features in Julia.")
(license license:expat)))
(define-public julia-crayons
(package
(name "julia-crayons")