gnu: julia: Add missing path to JULIA_LOAD_PATH.
This commit is contained in:
parent
fc1fe722a0
commit
e78c808796
|
@ -158,7 +158,7 @@
|
||||||
(define-public julia
|
(define-public julia
|
||||||
(package
|
(package
|
||||||
(name "julia")
|
(name "julia")
|
||||||
(version "1.1.1")
|
(version "1.1.1") ;; Update also JULIA_LOAD_PATH with it
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
(uri (string-append
|
||||||
|
@ -485,7 +485,8 @@
|
||||||
(native-search-paths
|
(native-search-paths
|
||||||
(list (search-path-specification
|
(list (search-path-specification
|
||||||
(variable "JULIA_LOAD_PATH")
|
(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.
|
;; Julia is not officially released for ARM and MIPS.
|
||||||
;; See https://github.com/JuliaLang/julia/issues/10639
|
;; See https://github.com/JuliaLang/julia/issues/10639
|
||||||
(supported-systems '("i686-linux" "x86_64-linux" "aarch64-linux"))
|
(supported-systems '("i686-linux" "x86_64-linux" "aarch64-linux"))
|
||||||
|
|
Loading…
Reference in New Issue