gnu: Add julia-hostcpufeatures.

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

Change-Id: I47ccade771b0316eb46c88aaa912dbc699eed453
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Spencer King 2025-01-02 21:14:21 +00:00 committed by Ludovic Courtès
parent e2d0eba13c
commit 84a68cffe6
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -2943,6 +2943,28 @@ operations in Julia.")
library for parsing HTML.")
(license license:expat)))
(define-public julia-hostcpufeatures
(package
(name "julia-hostcpufeatures")
(version "0.1.17")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/JuliaSIMD/HostCPUFeatures.jl")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1p0phms2zbmlv8bn20lnwn1jh0xjvz7vq266zf296adha534q9pq"))))
(build-system julia-build-system)
(propagated-inputs (list julia-bittwiddlingconveniencefunctions
julia-ifelse julia-static))
(home-page "https://github.com/JuliaSIMD/HostCPUFeatures.jl")
(synopsis "Provides information about the CPU's features")
(description "This package provides information about the features of
the host CPU in Julia.")
(license license:expat)))
(define-public julia-http
(package
(name "julia-http")