~ruther/guix-local

45753b65529b4e99e522f85f93df8f2269d2dab8 — Ludovic Courtès 13 years ago 35f3c5f
packages: Add a `home-page' field.

* guix/packages.scm (<package>)[home-page]: New field.

* distro/base.scm (hello)[home-page]: Initialize.
2 files changed, 3 insertions(+), 0 deletions(-)

M distro/base.scm
M guix/packages.scm
M distro/base.scm => distro/base.scm +1 -0
@@ 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+")))

M guix/packages.scm => guix/packages.scm +2 -0
@@ 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))))