gnu: julia: Add missing path to JULIA_LOAD_PATH.

This commit is contained in:
nixo 2019-10-10 17:49:15 +02:00
parent fc1fe722a0
commit e78c808796
1 changed files with 72 additions and 71 deletions

View File

@ -158,7 +158,7 @@
(define-public julia
(package
(name "julia")
(version "1.1.1")
(version "1.1.1") ;; Update also JULIA_LOAD_PATH with it
(source (origin
(method url-fetch)
(uri (string-append
@ -485,7 +485,8 @@
(native-search-paths
(list (search-path-specification
(variable "JULIA_LOAD_PATH")
(files (list "share/julia/packages/")))))
(files (list "share/julia/packages/"
"share/julia/stdlib/v1.1/")))))
;; Julia is not officially released for ARM and MIPS.
;; See https://github.com/JuliaLang/julia/issues/10639
(supported-systems '("i686-linux" "x86_64-linux" "aarch64-linux"))