From 7b7b8c909bdfc3f281d6fd5f40784c46c795c014 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Sun, 27 Jun 2021 16:14:21 +0200 Subject: [PATCH] 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 610683575c..dfb4c680be 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)))))