mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add julia-testimages.
* gnu/packages/julia-xyz.scm (julia-testimages): New variable.
This commit is contained in:
parent
cb66e4ae6a
commit
6ddeadbaf0
1 changed files with 37 additions and 0 deletions
|
@ -3140,6 +3140,43 @@ (define-public julia-tensorcore
|
|||
dimensions}.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public julia-testimages
|
||||
(package
|
||||
(name "julia-testimages")
|
||||
(version "1.5.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/JuliaImages/TestImages.jl")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1lnfsmx33qspyvxw0cykwh7il8xykjpcw1080sisn95ngz2qhdmy"))))
|
||||
(build-system julia-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f)) ; cycle with ImageMagick.jl
|
||||
(propagated-inputs
|
||||
`(("julia-axisarrays" ,julia-axisarrays)
|
||||
("julia-colortypes" ,julia-colortypes)
|
||||
("julia-fileio" ,julia-fileio)
|
||||
("julia-offsetarrays" ,julia-offsetarrays)
|
||||
("julia-stringdistances" ,julia-stringdistances)))
|
||||
;(native-inputs
|
||||
; `(("julia-colors" ,julia-colors)
|
||||
; ("julia-fixedpointnumbers" ,julia-fixedpointnumbers)
|
||||
; ("julia-imagecontrastadjustment" ,julia-imagecontrastadjustment)
|
||||
; ("julia-imagemagick" ,julia-imagemagick)
|
||||
; ("julia-ometiff" ,julia-ometiff)
|
||||
; ("julia-referencetests" ,julia-referencetests)))
|
||||
(home-page "https://testimages.juliaimages.org/")
|
||||
(synopsis "Standard test images for Julia")
|
||||
(description "This package provides a convenient Julia interface for loading
|
||||
standard named test images and example images for the internal usage in
|
||||
@code{JuliaImages}. This can be used in conjunction with the @code{Images}
|
||||
package.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public julia-tracker
|
||||
(package
|
||||
(name "julia-tracker")
|
||||
|
|
Loading…
Reference in a new issue