civodul pushed a commit to branch master
in repository guix.

commit 194294251feb7ed5b542c92d8cfaa6feba27cf8e
Author: Spencer King <[email protected]>
AuthorDate: Tue Dec 24 23:25:43 2024 +0000

    gnu: Add julia-bittwiddlingconveniencefunctions.
    
    * gnu/packages/julia-xyz.scm (julia-bittwiddlingconveniencefunctions): New 
variable.
    
    Change-Id: I822c61c780ce5035346f3f307a6e9dc1be8fd013
    Signed-off-by: Ludovic Courtès <[email protected]>
---
 gnu/packages/julia-xyz.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm
index d320d40ab9..667d609b6f 100644
--- a/gnu/packages/julia-xyz.scm
+++ b/gnu/packages/julia-xyz.scm
@@ -698,6 +698,31 @@ sequences.")
 and amino acids that are used ny otherBioJulia packages.")
     (license license:expat)))
 
+(define-public julia-bittwiddlingconveniencefunctions
+  (package
+    (name "julia-bittwiddlingconveniencefunctions")
+    (version "0.1.6")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url
+              
"https://github.com/JuliaSIMD/BitTwiddlingConvenienceFunctions.jl";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0qn36wpj7bk4ysizhx0a13ajajjzlc6cxsqhhx9w99d5wciplx4a"))))
+    (build-system julia-build-system)
+    (propagated-inputs (list julia-static))
+    (home-page
+     "https://github.com/JuliaSIMD/BitTwiddlingConvenienceFunctions.jl";)
+    (synopsis "Bit twiddling convenience functions")
+    (description
+     "This package provides bit twiddling convenience functions in Julia.
+These are useful for going to the next or previous mask size or for
+calculating corresponding shifts.")
+    (license license:expat)))
+
 (define-public julia-blockarrays
   (package
     (name "julia-blockarrays")

Reply via email to