diff options
author | Ian Denhardt <ian@zenhack.net> | 2014-09-27 18:36:10 -0400 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-09-28 12:01:45 +0200 |
commit | 79f5dd5915ab8ba5cc5fc19496e042e34a7a10ff (patch) | |
tree | 2665c23222c12df1884b2d7b4a87f84333a38f91 /doc | |
parent | 29a61bd0a5ed384bb73fe1e44f856fc0c1f04727 (diff) | |
download | guix-79f5dd5915ab8ba5cc5fc19496e042e34a7a10ff.tar guix-79f5dd5915ab8ba5cc5fc19496e042e34a7a10ff.tar.gz |
doc: Use 'define-public' in example package recipe.
* doc/guix.texi (Defining Packages): Use 'define-public' instead of
'define'.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/guix.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/guix.texi b/doc/guix.texi index f73ce52c4c..813c133475 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -1371,7 +1371,7 @@ package looks like this: #:use-module (guix build-system gnu) #:use-module (guix licenses)) -(define hello +(define-public hello (package (name "hello") (version "2.8") |