diff options
author | zimoun <zimon.toutoune@gmail.com> | 2022-01-04 23:47:46 +0100 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2022-01-10 15:15:33 +0200 |
commit | 1305d9f3b1087bd826582699c11a5e7fd92db3b6 (patch) | |
tree | 60974414782c85fe64d9397ac44d76d998dc7814 /gnu | |
parent | cc49040833ee0e9bb50d2ce827daa4bc53a4163a (diff) | |
download | guix-1305d9f3b1087bd826582699c11a5e7fd92db3b6.tar guix-1305d9f3b1087bd826582699c11a5e7fd92db3b6.tar.gz |
gnu: Add julia-twiddle.
* gnu/packages/julia-xyz.scm (julia-twiddle): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/julia-xyz.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm index 264fdf6d23..2872addaa3 100644 --- a/gnu/packages/julia-xyz.scm +++ b/gnu/packages/julia-xyz.scm @@ -5026,6 +5026,27 @@ which are: @end itemize") (license license:expat))) +(define-public julia-twiddle + (package + (name "julia-twiddle") + (version "1.1.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/SabrinaJaye/Twiddle.jl") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1c2gdv7sy4n1d8687w2q0yzwmwmanf4p6mvzvkz5gm4baxyzmbh2")))) + (build-system julia-build-system) + (home-page "https://ben-ward.science/Twiddle.jl/stable") + (synopsis "Ready to use bit-twiddling tricks") + (description "This package provides a collection of useful bit-twiddling +tricks, ready to use as functions, with detailed documentation and example +real-world use cases.") + (license license:expat))) + (define-public julia-typedtables (package (name "julia-typedtables") |