[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#47350] [PATCH 09/29] gnu: Add julia-colortypes.
From: |
zimoun |
Subject: |
[bug#47350] [PATCH 09/29] gnu: Add julia-colortypes. |
Date: |
Tue, 23 Mar 2021 20:45:58 +0100 |
* gnu/packages/julia-xyz.scm (julia-colortypes): New variable.
---
gnu/packages/julia-xyz.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm
index d417a996f8..3213efd715 100644
--- a/gnu/packages/julia-xyz.scm
+++ b/gnu/packages/julia-xyz.scm
@@ -121,6 +121,32 @@ operations. It can wrap any @code{IO} type automatically
making incremental
reading and writing faster.")
(license license:expat)))
+(define-public julia-colortypes
+ (package
+ (name "julia-colortypes")
+ (version "0.10.12")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/JuliaGraphics/ColorTypes.jl")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "176hr3qbz7lncmykks2qaj3cqisnzim7wi5jwsca9ld26wwyvyqq"))))
+ (arguments
+ '(#:tests? #f)) ;require Documenter, not packaged yet
+ (build-system julia-build-system)
+ (propagated-inputs
+ `(("julia-fixedpointnumbers" ,julia-fixedpointnumbers)))
+ (home-page "https://github.com/JuliaGraphics/ColorTypes.jl")
+ (synopsis "Basic color types and constructor")
+ (description "This minimalistic package serves as the foundation for
+working with colors in Julia. It defines basic color types and their
+constructors, and sets up traits and show methods to make them easier to work
+with.")
+ (license license:expat)))
+
(define-public julia-compat
(package
(name "julia-compat")
--
2.28.0
- [bug#47350] [PATCH 00/29] Add Zygote (piece for Machine Learning with Julia), zimoun, 2021/03/23
- [bug#47350] [PATCH 01/29] gnu: Add julia-constructionbase., zimoun, 2021/03/23
- [bug#47350] [PATCH 09/29] gnu: Add julia-colortypes.,
zimoun <=
- [bug#47350] [PATCH 02/29] gnu: Add julia-macrotools., zimoun, 2021/03/23
- [bug#47350] [PATCH 04/29] gnu: Add julia-reexport., zimoun, 2021/03/23
- [bug#47350] [PATCH 03/29] gnu: Add julia-nanmath., zimoun, 2021/03/23
- [bug#47350] [PATCH 05/29] gnu: Add julia-irtools., zimoun, 2021/03/23
- [bug#47350] [PATCH 08/29] gnu: Add julia-abstractffts., zimoun, 2021/03/23
- [bug#47350] [PATCH 06/29] gnu: Add julia-staticarrays., zimoun, 2021/03/23
- [bug#47350] [PATCH 07/29] gnu: Add julia-unitful., zimoun, 2021/03/23
- [bug#47350] [PATCH 10/29] gnu: Add julia-colors., zimoun, 2021/03/23