mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-21 02:03:29 -05:00
gnu: Add julia-ifelse.
* gnu/packages/julia-xyz.scm (julia-ifelse): New variable.
This commit is contained in:
parent
f2af6d371a
commit
673bd9a75b
1 changed files with 20 additions and 0 deletions
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue