diff options
author | Ludovic Courtès <ludo@gnu.org> | 2017-03-30 10:41:36 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2017-03-30 11:15:16 +0200 |
commit | 32e18d37545ecf0f8f0dfacd920d293a8326aeca (patch) | |
tree | cc635d102810b58597bdcec0410563fcf82ce7d1 /build-aux | |
parent | 77310a1c2d9bc2008ef810928bbb9995d775f53b (diff) | |
download | patches-32e18d37545ecf0f8f0dfacd920d293a8326aeca.tar patches-32e18d37545ecf0f8f0dfacd920d293a8326aeca.tar.gz |
hydra: Include the localstatedir in the binary tarball.
This is a followup to 6b63c43e0661406bf9e8c4c54f517744fc2ffdb3.
* build-aux/hydra/gnu-system.scm (tarball-jobs): Pass #:localstatedir? #t
to 'self-contained-tarball'.
Diffstat (limited to 'build-aux')
-rw-r--r-- | build-aux/hydra/gnu-system.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/build-aux/hydra/gnu-system.scm b/build-aux/hydra/gnu-system.scm index 7a26c72778..105ed8375d 100644 --- a/build-aux/hydra/gnu-system.scm +++ b/build-aux/hydra/gnu-system.scm @@ -219,6 +219,7 @@ all its dependencies, and ready to be installed on non-GuixSD distributions.") (>>= (profile-derivation (packages->manifest (list guix))) (lambda (profile) (self-contained-tarball "guix-binary" profile + #:localstatedir? #t #:compressor (lookup-compressor "xz"))))) #:system system)))) |