diff options
-rw-r--r-- | distro/base.scm | 1 | ||||
-rw-r--r-- | guix/packages.scm | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/distro/base.scm b/distro/base.scm index d830d6efef..f80795282a 100644 --- a/distro/base.scm +++ b/distro/base.scm @@ -46,4 +46,5 @@ (inputs `(("gawk" ,(nixpkgs-derivation "gawk")))) (description "GNU Hello") (long-description "Yeah...") + (home-page "http://www.gnu.org/software/hello/") (license "GPLv3+"))) diff --git a/guix/packages.scm b/guix/packages.scm index 00751cedd5..786e6a8dc9 100644 --- a/guix/packages.scm +++ b/guix/packages.scm @@ -122,8 +122,10 @@ etc." (description package-description) ; one-line description (long-description package-long-description) ; one or two paragraphs (license package-license (default '())) + (home-page package-home-page) (platforms package-platforms (default '())) (maintainers package-maintainers (default '())) + (location package-location (default (and=> (current-source-location) source-properties->location)))) |