From 9735a7b6eaccf248d91e1f3c17446b2fac41ec9a Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Wed, 17 Oct 2012 17:52:12 +0200 Subject: distro: Add package that builds a tarball of the bootstrap Guile. * distro/packages/base.scm (%guile-static-stripped): New variable. --- distro/packages/base.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) (limited to 'distro') diff --git a/distro/packages/base.scm b/distro/packages/base.scm index ad3c4882a2..8ffdbf635d 100644 --- a/distro/packages/base.scm +++ b/distro/packages/base.scm @@ -2101,4 +2101,32 @@ (define (copy-recursively source destination) #t)))) (inputs `(("guile" ,%guile-static))))) +(define %guile-bootstrap-tarball + ;; A tarball with the statically-linked, relocatable Guile. + (package (inherit %guile-static) + (name "guile-bootstrap-tarball") + (build-system trivial-build-system) + (inputs `(("tar" ,tar) + ("xz" ,xz) + ("guile" ,%guile-static-stripped))) + (arguments + (lambda (system) + `(#:modules ((guix build utils)) + #:builder + (begin + (use-modules (guix build utils)) + (let ((out (assoc-ref %outputs "out")) + (guile (assoc-ref %build-inputs "guile")) + (tar (assoc-ref %build-inputs "tar")) + (xz (assoc-ref %build-inputs "xz"))) + (mkdir out) + (set-path-environment-variable "PATH" '("bin") (list tar xz)) + (with-directory-excursion guile + (zero? (system* "tar" "cJvf" + (string-append out "/guile-bootstrap-" + ,(package-version %guile-static) + "-" ,system + ".tar.xz") + ".")))))))))) + ;;; base.scm ends here -- cgit v1.2.3