gnu: Add julia-example.

* gnu/packages/julia-xyz.scm (julia-example): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
zimoun 2021-03-25 02:04:59 +01:00 committed by Ludovic Courtès
parent 13a8b866b1
commit fffb1e725b
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -240,6 +240,26 @@ (define-public julia-datastructures
@code{Accumulators}, @code{LinkedLists}, @code{SortedDicts} and many others.")
(license license:expat)))
(define-public julia-example
(let ((commit "f968c69dea24f851d0c7e686db23fa55826b5388"))
(package
(name "julia-example")
(version "0.5.4") ;tag not created upstream
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/JuliaLang/Example.jl")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32 "1v3z0d6gh6wfbypffy9m9rhh36px6fm5wjzq0y6rbmc95r0qpqlx"))))
(build-system julia-build-system)
(home-page "https://github.com/JuliaLang/Example.jl")
(synopsis "Module providing examples")
(description "This package provides various examples.")
(license license:expat))))
(define-public julia-fixedpointnumbers
(package
(name "julia-fixedpointnumbers")