civodul pushed a commit to branch core-updates
in repository guix.

commit ea89b62a18c988ead226cec542a5f4fdd3d58ac0
Author: Ludovic Courtès <[email protected]>
Date:   Sun Mar 10 22:21:14 2019 +0100

    packages: 'patch-and-repack' specifies a 'type' property for the derivation.
    
    * guix/packages.scm (patch-and-repack): Pass #:properties to 
'gexp->derivation'.
---
 guix/packages.scm | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/guix/packages.scm b/guix/packages.scm
index 8515bb7..e5e568e 100644
--- a/guix/packages.scm
+++ b/guix/packages.scm
@@ -645,7 +645,9 @@ specifies modules in scope when evaluating SNIPPET."
                         #:graft? #f
                         #:system system
                         #: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)
   "Return the closure of INPUTS when considering the 'propagated-inputs'

Reply via email to