packages: Allow store paths as inputs.
* guix/packages.scm (package-derivation): Allow non-derivation store paths as inputs.master
parent
10d8289861
commit
cf56996046
|
@ -200,7 +200,9 @@ with their propagated inputs, recursively."
|
||||||
(list name (package-derivation store package)
|
(list name (package-derivation store package)
|
||||||
sub-drv))
|
sub-drv))
|
||||||
(((? string? name)
|
(((? string? name)
|
||||||
(and (? string?) (? derivation-path?) drv))
|
(and (? string?) (? store-path?) drv))
|
||||||
|
;; Both derivation and output paths. The latter
|
||||||
|
;; can be files already in the store.
|
||||||
(list name drv))
|
(list name drv))
|
||||||
(((? string? name)
|
(((? string? name)
|
||||||
(and (? string?) (? (negate store-path?))
|
(and (? string?) (? (negate store-path?))
|
||||||
|
|
Reference in New Issue