3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: Add julia-suppressor.

* gnu/packages/julia-xyz.scm (julia-suppressor): New variable.
This commit is contained in:
Efraim Flashner 2021-05-16 16:44:14 +03:00
parent 9e77eb5884
commit ef9a552182
Signed by untrusted user: efraim
GPG key ID: 41AAE7DCCA3D8351

View file

@ -1276,6 +1276,26 @@ statically sized arrays in Julia, using the abstract type
linear algebra operations.") linear algebra operations.")
(license license:expat))) (license license:expat)))
(define-public julia-suppressor
(package
(name "julia-suppressor")
(version "0.2.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/JuliaIO/Suppressor.jl")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0v6pxvf8lzrqjc676snvlszh14ridl442g2h6syfjiy75pk7mdyc"))))
(build-system julia-build-system)
(home-page "https://github.com/JuliaIO/Suppressor.jl")
(synopsis "Capture stdout and sterr")
(description "Julia macros for suppressing and/or capturing output (stdout),
warnings (stderr) or both streams at the same time.")
(license license:expat)))
(define-public julia-uris (define-public julia-uris
(package (package
(name "julia-uris") (name "julia-uris")