packages: 'patch-and-repack' specifies a 'type' property for the derivation.
* guix/packages.scm (patch-and-repack): Pass #:properties to 'gexp->derivation'.
This commit is contained in:
parent
6db044db45
commit
ea89b62a18
|
@ -645,7 +645,9 @@ specifies modules in scope when evaluating SNIPPET."
|
||||||
#:graft? #f
|
#:graft? #f
|
||||||
#:system system
|
#:system system
|
||||||
#:deprecation-warnings #t ;to avoid a rebuild
|
#:deprecation-warnings #t ;to avoid a rebuild
|
||||||
#:guile-for-build guile-for-build))))
|
#:guile-for-build guile-for-build
|
||||||
|
#:properties `((type . origin)
|
||||||
|
(patches . ,(length patches)))))))
|
||||||
|
|
||||||
(define (transitive-inputs inputs)
|
(define (transitive-inputs inputs)
|
||||||
"Return the closure of INPUTS when considering the 'propagated-inputs'
|
"Return the closure of INPUTS when considering the 'propagated-inputs'
|
||||||
|
|
Loading…
Reference in New Issue