diff options
author | Ludovic Courtès <ludo@gnu.org> | 2021-11-17 23:24:42 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-11-17 23:43:14 +0100 |
commit | 3a317f7476f8c6012e166ff9f340f861938721c9 (patch) | |
tree | 946e398c37912cfc03be7306951ae87bfeb130fa /guix/build-system | |
parent | e55547bf70384691712047912c793c517debd2ec (diff) | |
parent | 62e707d67caf1dab2af411a69ff8cec4b2dc686e (diff) |
Merge branch 'master' into core-updates-frozen
Diffstat (limited to 'guix/build-system')
-rw-r--r-- | guix/build-system/julia.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/guix/build-system/julia.scm b/guix/build-system/julia.scm index 5b824d7f0a..2998663df1 100644 --- a/guix/build-system/julia.scm +++ b/guix/build-system/julia.scm @@ -1,6 +1,7 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2019 Nicolò Balzarotti <nicolo@nixo.xyz> ;;; Copyright © 2021 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2021 Jean-Baptiste Volatier <jbv@pm.me> ;;; ;;; This file is part of GNU Guix. ;;; @@ -84,6 +85,7 @@ (system (%current-system)) (guile #f) (julia-package-name #f) + (julia-package-uuid #f) (imported-modules %julia-build-system-modules) (modules '((guix build julia-build-system) (guix build utils)))) @@ -102,7 +104,8 @@ (map search-path-specification->sexp search-paths)) #:inputs #$(input-tuples->gexp inputs) - #:julia-package-name #$julia-package-name)))) + #:julia-package-name #$julia-package-name + #:julia-package-uuid #$julia-package-uuid)))) (mlet %store-monad ((guile (package->derivation (or guile (default-guile)) system #:graft? #f))) |