summaryrefslogtreecommitdiff
path: root/gnu/packages/make-bootstrap.scm
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim.cournoyer@gmail.com>2022-12-12 09:33:10 -0500
committerMaxim Cournoyer <maxim.cournoyer@gmail.com>2023-01-03 16:17:37 -0500
commit5588d9bd7a1f1982b6615fb050db65e16e354192 (patch)
tree79b40beff7294f5c47ed7a200791c3221fcbe986 /gnu/packages/make-bootstrap.scm
parent45ac52239a6f5c19e0ab324cff6c567a7e4e24d6 (diff)
gnu: %guile-static-3.0: New variable.
* gnu/packages/make-bootstrap.scm (%guile-static-3.0): New variable. (%guile-static-stripped): Use it.
Diffstat (limited to 'gnu/packages/make-bootstrap.scm')
-rw-r--r--gnu/packages/make-bootstrap.scm12
1 files changed, 7 insertions, 5 deletions
diff --git a/gnu/packages/make-bootstrap.scm b/gnu/packages/make-bootstrap.scm
index 24855f6b283..a0999cb477c 100644
--- a/gnu/packages/make-bootstrap.scm
+++ b/gnu/packages/make-bootstrap.scm
@@ -748,6 +748,12 @@ for `sh' in $PATH, and without nscd, and with static NSS modules."
748 "guile-default-utf8.patch" 748 "guile-default-utf8.patch"
749 "guile-linux-syscalls.patch"))) 749 "guile-linux-syscalls.patch")))
750 750
751(define %guile-static-3.0
752 (make-guile-static guile-3.0-latest
753 '("guile-2.2-default-utf8.patch"
754 "guile-3.0-linux-syscalls.patch"
755 "guile-3.0-relocatable.patch")))
756
751(define* (make-guile-static-stripped static-guile) 757(define* (make-guile-static-stripped static-guile)
752 (package 758 (package
753 (inherit static-guile) 759 (inherit static-guile)
@@ -796,11 +802,7 @@ for `sh' in $PATH, and without nscd, and with static NSS modules."
796(define %guile-static-stripped 802(define %guile-static-stripped
797 ;; A stripped static Guile 3.0 binary, for use in initrds 803 ;; A stripped static Guile 3.0 binary, for use in initrds
798 ;; and during bootstrap. 804 ;; and during bootstrap.
799 (make-guile-static-stripped 805 (make-guile-static-stripped %guile-static-3.0))
800 (make-guile-static guile-3.0-latest
801 '("guile-2.2-default-utf8.patch"
802 "guile-3.0-linux-syscalls.patch"
803 "guile-3.0-relocatable.patch"))))
804 806
805(define (tarball-package pkg) 807(define (tarball-package pkg)
806 "Return a package containing a tarball of PKG." 808 "Return a package containing a tarball of PKG."