gnu: Add julia-ifelse.

* gnu/packages/julia-xyz.scm (julia-ifelse): New variable.
This commit is contained in:
Efraim Flashner 2021-05-20 16:28:45 +03:00
parent f2af6d371a
commit 673bd9a75b
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -794,6 +794,26 @@ (define-public julia-http
implementing both a client and a server.")
(license license:expat)))
(define-public julia-ifelse
(package
(name "julia-ifelse")
(version "0.1.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/sciml/ifelse.jl")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1wrw842r8708fryf2ihp9mkmdrg27saa9nix2c31vs995k2fgr9w"))))
(build-system julia-build-system)
(home-page "https://github.com/sciml/ifelse.jl")
(synopsis "Function form of the if-else conditional statement")
(description "This package provides a convenient function form of the
conditional ifelse. It is similar to @code{Core.ifelse} but it is extendable.")
(license license:expat)))
(define-public julia-imagemagick-jll
(package
(name "julia-imagemagick-jll")