gnu: make-bootstrap: Add a couple of synopses.

* gnu/packages/make-bootstrap.scm (%guile-static,
  %guile-static-stripped): Add synopsis.
This commit is contained in:
Ludovic Courtès 2013-08-21 11:44:16 +02:00
parent 3e8f16ba91
commit 75ca2f4f47

@ -451,6 +451,7 @@ for `sh' in $PATH, and without nscd, and with static NSS modules."
;; than in hard-coded configure-time paths. ;; than in hard-coded configure-time paths.
(let* ((guile (package (inherit guile-2.0) (let* ((guile (package (inherit guile-2.0)
(name (string-append (package-name guile-2.0) "-static")) (name (string-append (package-name guile-2.0) "-static"))
(synopsis "Statically-linked and relocatable Guile")
(inputs (inputs
`(("patch/relocatable" `(("patch/relocatable"
,(search-patch "guile-relocatable.patch")) ,(search-patch "guile-relocatable.patch"))
@ -542,7 +543,8 @@ for `sh' in $PATH, and without nscd, and with static NSS modules."
#t #t
'(zero? (system* guile2 "--version"))))))))) '(zero? (system* guile2 "--version")))))))))
(inputs `(("guile" ,%guile-static))) (inputs `(("guile" ,%guile-static)))
(outputs '("out")))) (outputs '("out"))
(synopsis "Minimal statically-linked and relocatable Guile")))
(define (tarball-package pkg) (define (tarball-package pkg)
"Return a package containing a tarball of PKG." "Return a package containing a tarball of PKG."