diff options
-rw-r--r-- | gnu/ci.scm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/ci.scm b/gnu/ci.scm index 5ab1b51d82..0c1387e98a 100644 --- a/gnu/ci.scm +++ b/gnu/ci.scm @@ -87,6 +87,9 @@ MAX-SILENT-TIME and TIMEOUT are build options passed to the daemon when building the derivation." `((#:job-name . ,name) (#:derivation . ,(derivation-file-name drv)) + (#:inputs . ,(map (compose derivation-file-name + derivation-input-derivation) + (derivation-inputs drv))) (#:outputs . ,(filter-map (lambda (res) (match res |