diff options
author | Ludovic Courtès <ludo@gnu.org> | 2021-06-27 16:14:21 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-07-11 00:49:15 +0200 |
commit | 7b7b8c909bdfc3f281d6fd5f40784c46c795c014 (patch) | |
tree | 980a58d4636f8ce41f60220f82db78379fd87d3b | |
parent | f23803af2018a148fb088f2516d79c20d6bf95f0 (diff) | |
download | guix-7b7b8c909bdfc3f281d6fd5f40784c46c795c014.tar.gz guix-7b7b8c909bdfc3f281d6fd5f40784c46c795c014.zip |
packages: 'hidden-package' inherits the original package location.
* guix/packages.scm (hidden-package): Inherit 'location' from P.
-rw-r--r-- | guix/packages.scm | 1 |
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))))) |