diff options
| author | Ludovic Courtès <ludo@gnu.org> | 2017-07-04 23:11:07 +0200 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2017-07-04 23:45:12 +0200 |
| commit | 425ab478ac99452dff6a71b16caa46ae06d5b550 (patch) | |
| tree | ea05c26436415c554663bc7ed13ffb82b7558755 | |
| parent | ba4aca3ae48dcaf904297573fc210ff4a4d771e3 (diff) | |
gnu: shepherd: Allow cross-compilation.
* gnu/packages/admin.scm (shepherd)[native-inputs]: Add GUILE-2.0.
| -rw-r--r-- | gnu/packages/admin.scm | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index ef95fe2cb23..f056cc51c6c 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm | |||
| @@ -163,8 +163,14 @@ and provides a \"top-like\" mode (monitoring).") | |||
| 163 | (build-system gnu-build-system) | 163 | (build-system gnu-build-system) |
| 164 | (arguments | 164 | (arguments |
| 165 | '(#:configure-flags '("--localstatedir=/var"))) | 165 | '(#:configure-flags '("--localstatedir=/var"))) |
| 166 | (native-inputs `(("pkg-config" ,pkg-config))) | 166 | (native-inputs |
| 167 | (inputs `(("guile" ,guile-2.0))) | 167 | `(("pkg-config" ,pkg-config) |
| 168 | |||
| 169 | ;; This is the Guile we use as a cross-compiler... | ||
| 170 | ("guile" ,guile-2.0))) | ||
| 171 | (inputs | ||
| 172 | ;; ... and this is the one that appears in shebangs when cross-compiling. | ||
| 173 | `(("guile" ,guile-2.0))) | ||
| 168 | (synopsis "System service manager") | 174 | (synopsis "System service manager") |
| 169 | (description | 175 | (description |
| 170 | "The GNU Shepherd is a daemon-managing daemon, meaning that it supervises | 176 | "The GNU Shepherd is a daemon-managing daemon, meaning that it supervises |
