diff options
| author | Ludovic Courtès <ludo@gnu.org> | 2016-12-20 10:19:15 +0100 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2016-12-20 10:27:08 +0100 |
| commit | 4a78638f1fafd58839c012b546ae206168bb50ab (patch) | |
| tree | 5fced879e7e8f8023a71ecb653d74edf22ca98a1 | |
| parent | 137f8df66cf7220f6ef9ac736b8f99e2fc726e15 (diff) | |
gnu: cuirass: Make sure 'cuirass' has 'evaluate' in $PATH.
* gnu/packages/ci.scm (cuirass)[arguments]: Add OUT/bin to 'PATH'.
| -rw-r--r-- | gnu/packages/ci.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/ci.scm b/gnu/packages/ci.scm index 27bdf3f8ae1..05c51bbc4dc 100644 --- a/gnu/packages/ci.scm +++ b/gnu/packages/ci.scm | |||
| @@ -217,8 +217,11 @@ their dependencies.") | |||
| 217 | (mods (string-append json "/share/guile/site/2.0:" | 217 | (mods (string-append json "/share/guile/site/2.0:" |
| 218 | sqlite "/share/guile/site/2.0:" | 218 | sqlite "/share/guile/site/2.0:" |
| 219 | guix "/share/guile/site/2.0"))) | 219 | guix "/share/guile/site/2.0"))) |
| 220 | ;; Make sure 'cuirass' can find the 'git' and 'evaluate' | ||
| 221 | ;; commands, as well as the relevant Guile modules. | ||
| 220 | (wrap-program (string-append out "/bin/cuirass") | 222 | (wrap-program (string-append out "/bin/cuirass") |
| 221 | `("PATH" ":" prefix (,(string-append git "/bin"))) | 223 | `("PATH" ":" prefix (,(string-append out "/bin") |
| 224 | ,(string-append git "/bin"))) | ||
| 222 | `("GUILE_LOAD_PATH" ":" prefix (,mods)) | 225 | `("GUILE_LOAD_PATH" ":" prefix (,mods)) |
| 223 | `("GUILE_LOAD_COMPILED_PATH" ":" prefix (,mods))) | 226 | `("GUILE_LOAD_COMPILED_PATH" ":" prefix (,mods))) |
| 224 | #t)))))) | 227 | #t)))))) |
