aboutsummaryrefslogtreecommitdiff
path: root/guix/self.scm
Commit message (Collapse)AuthorAge
* self: Add "guix-packages-base" derivation.Ludovic Courtès2018-05-07
| | | | | | | | | | This introduces an intermediate derivation, thereby reducing the amount of rebuild that needs to happen when "leaf" package modules are modified. * guix/self.scm (compiled-guix)[*core-package-modules*]: New variable. [*package-modules*, *system-modules*, *cli-modules*]: Depend on it. Add it to the directory union.
* self: Produce a spliced (guix config) to placate Guile 2.0.Ludovic Courtès2018-04-11
| | | | | | | | Fixes 'guix pull' with Guile 2.0. See <https://debbugs.gnu.org/cgi/bugreport.cgi?bug=27284#153>. * guix/self.scm (make-config.scm): Remove 'begin' in 'scheme-file' argument and pass #:splice? #t.
* self: 'package-for-guile' really honors GUILE-VERSION.Ludovic Courtès2018-04-11
| | | | | * guix/self.scm (package-for-guile): Pass GUILE-VERSION to 'false-if-wrong-guile'.
* self: Remove 'eval-when' from in generated (guix config).Ludovic Courtès2018-04-11
| | | | * guix/self.scm (make-config.scm): Remove unneeded 'eval-when'.
* self: Don't use deprecated package names.Ludovic Courtès2018-04-10
| | | | | * guix/self.scm (compiled-guix)[guile-json, guile-ssh]: Don't refer t "guile2.2-json" and "guile2.2-ssh", which are deprecated.
* self: Export '%guix-register-program' in generated (guix config).Ludovic Courtès2018-04-10
| | | | * guix/self.scm (make-config.scm): Export '%guix-register-program'.
* self: Fix package names for compilation with Guile 2.0.Ludovic Courtès2018-04-10
| | | | | | | Reported by Ricardo Wurmus. * guix/self.scm (specification->package): Add guile2.0-{json,git,ssh}. (guile-for-build): Use 'module-ref' for Guile 2.0.
* self: Display a new line at the end of module compilation.Ludovic Courtès2018-04-10
| | | | | * guix/self.scm (compiled-modules)[build]: Add a 'newline' call at the end.
* self: Don't substitute the '-source' derivations.Ludovic Courtès2018-04-10
| | | | | | | With substitution enabled we would end up downloading 10+ MiB of source that's already available locally on disk. * guix/self.scm (imported-files): Pass #:options to 'computed-file'.
* Add (guix self).Ludovic Courtès2018-04-08
* guix/self.scm: New file. * Makefile.am (MODULES): Add it. * gnu/packages.scm (%distro-root-directory): Rewrite to try different directories. * guix/discovery.scm (guix): Export 'scheme-files'.