gnu: %guile-static-3.0: New variable.
* gnu/packages/make-bootstrap.scm (%guile-static-3.0): New variable. (%guile-static-stripped): Use it.
This commit is contained in:
parent
45ac52239a
commit
5588d9bd7a
1 changed files with 7 additions and 5 deletions
|
@ -748,6 +748,12 @@ for `sh' in $PATH, and without nscd, and with static NSS modules."
|
||||||
"guile-default-utf8.patch"
|
"guile-default-utf8.patch"
|
||||||
"guile-linux-syscalls.patch")))
|
"guile-linux-syscalls.patch")))
|
||||||
|
|
||||||
|
(define %guile-static-3.0
|
||||||
|
(make-guile-static guile-3.0-latest
|
||||||
|
'("guile-2.2-default-utf8.patch"
|
||||||
|
"guile-3.0-linux-syscalls.patch"
|
||||||
|
"guile-3.0-relocatable.patch")))
|
||||||
|
|
||||||
(define* (make-guile-static-stripped static-guile)
|
(define* (make-guile-static-stripped static-guile)
|
||||||
(package
|
(package
|
||||||
(inherit static-guile)
|
(inherit static-guile)
|
||||||
|
@ -796,11 +802,7 @@ for `sh' in $PATH, and without nscd, and with static NSS modules."
|
||||||
(define %guile-static-stripped
|
(define %guile-static-stripped
|
||||||
;; A stripped static Guile 3.0 binary, for use in initrds
|
;; A stripped static Guile 3.0 binary, for use in initrds
|
||||||
;; and during bootstrap.
|
;; and during bootstrap.
|
||||||
(make-guile-static-stripped
|
(make-guile-static-stripped %guile-static-3.0))
|
||||||
(make-guile-static guile-3.0-latest
|
|
||||||
'("guile-2.2-default-utf8.patch"
|
|
||||||
"guile-3.0-linux-syscalls.patch"
|
|
||||||
"guile-3.0-relocatable.patch"))))
|
|
||||||
|
|
||||||
(define (tarball-package pkg)
|
(define (tarball-package pkg)
|
||||||
"Return a package containing a tarball of PKG."
|
"Return a package containing a tarball of PKG."
|
||||||
|
|
Reference in a new issue