[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#47350] [PATCH 01/29] gnu: Add julia-constructionbase.
From: |
zimoun |
Subject: |
[bug#47350] [PATCH 01/29] gnu: Add julia-constructionbase. |
Date: |
Tue, 23 Mar 2021 20:45:50 +0100 |
* gnu/packages/julia-xyz.scm (julia-constructionbase): New variable.
---
gnu/packages/julia-xyz.scm | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm
index 0d35cbde57..2e344fd6f1 100644
--- a/gnu/packages/julia-xyz.scm
+++ b/gnu/packages/julia-xyz.scm
@@ -1,5 +1,6 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2020, 2021 Nicolò Balzarotti <nicolo@nixo.xyz>
+;;; Copyright © 2021 Simon Tournier <zimon.toutoune@gmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -117,6 +118,27 @@ provides a macro that lets you use the latest syntax in a
backwards-compatible
way.")
(license license:expat)))
+(define-public julia-constructionbase
+ (let ((commit "de77e2865b554f9b078fd8c35b593cce0554ae02"))
+ (package
+ (name "julia-constructionbase")
+ (version "1.1.0") ;tag not created upstream
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/JuliaObjects/ConstructionBase.jl")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1y79sfj0rds1skl9j16p9161hwa9khm0xc2m4hgjcbh5zzvyr57v"))))
+ (build-system julia-build-system)
+ (home-page "https://juliaobjects.github.io/ConstructionBase.jl/dev/")
+ (synopsis "Primitive functions for construction of objects")
+ (description "This very lightwight package provides primitive functions
+for construction of objects.")
+ (license license:expat))))
+
(define-public julia-datastructures
(package
(name "julia-datastructures")
--
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 <=
- [bug#47350] [PATCH 09/29] gnu: Add julia-colortypes., zimoun, 2021/03/23
- [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