aboutsummaryrefslogtreecommitdiff
path: root/guix/packages.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2021-06-27 16:14:21 +0200
committerLudovic Courtès <ludo@gnu.org>2021-07-11 00:49:15 +0200
commit7b7b8c909bdfc3f281d6fd5f40784c46c795c014 (patch)
tree980a58d4636f8ce41f60220f82db78379fd87d3b /guix/packages.scm
parentf23803af2018a148fb088f2516d79c20d6bf95f0 (diff)
downloadguix-7b7b8c909bdfc3f281d6fd5f40784c46c795c014.tar
guix-7b7b8c909bdfc3f281d6fd5f40784c46c795c014.tar.gz
packages: 'hidden-package' inherits the original package location.
* guix/packages.scm (hidden-package): Inherit 'location' from P.
Diffstat (limited to 'guix/packages.scm')
-rw-r--r--guix/packages.scm1
1 files changed, 1 insertions, 0 deletions
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)))))