diff options
author | Ludovic Courtès <ludo@gnu.org> | 2017-12-07 22:49:08 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2017-12-07 23:12:37 +0100 |
commit | 7920e187c121977716d3399f5780553ba138f9b3 (patch) | |
tree | f25296df43d798f5994b518b369c2291ee57f2e3 /guix/scripts/package.scm | |
parent | cf69135d5e6797e566b8bb18419ae9e3c8aeb621 (diff) | |
download | gnu-guix-7920e187c121977716d3399f5780553ba138f9b3.tar gnu-guix-7920e187c121977716d3399f5780553ba138f9b3.tar.gz |
scripts: All commands enable build hooks by default.
* guix/scripts/archive.scm (%default-options): Add 'build-hook?'.
* guix/scripts/copy.scm (%default-options): Likewise.
* guix/scripts/environment.scm (%default-options): Likewise.
* guix/scripts/pack.scm (%default-options): Likewise.
* guix/scripts/package.scm (%default-options): Likewise.
* guix/scripts/pull.scm (%default-options): Likewise.
Diffstat (limited to 'guix/scripts/package.scm')
-rw-r--r-- | guix/scripts/package.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/guix/scripts/package.scm b/guix/scripts/package.scm index 0a4a07ae2a..617e102d93 100644 --- a/guix/scripts/package.scm +++ b/guix/scripts/package.scm @@ -360,7 +360,8 @@ ENTRIES, a list of manifest entries, in the context of PROFILE." ;; Alist of default option values. `((verbosity . 0) (graft? . #t) - (substitutes? . #t))) + (substitutes? . #t) + (build-hook? . #t))) (define (show-help) (display (G_ "Usage: guix package [OPTION]... |