civodul pushed a commit to branch wip-simplified-packages in repository guix.
commit 8cb2ea8ab4d3264415def13d27c28d28afba4b6e Author: Ludovic Courtès <[email protected]> AuthorDate: Sun Jun 27 16:14:21 2021 +0200 packages: 'hidden-package' inherits the original package location. * guix/packages.scm (hidden-package): Inherit 'location' from P. --- guix/packages.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/guix/packages.scm b/guix/packages.scm index d15a17e..20cad34 100644 --- a/guix/packages.scm +++ b/guix/packages.scm @@ -491,6 +491,7 @@ it has in Guix." user interfaces, ignores." (package (inherit p) + (location (package-location p)) (properties `((hidden? . #t) ,@(package-properties p)))))
