mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-03 00:26:33 +01:00
gnu: commencement: gnumach-headers-boot0: Build from tarball.
The 'gnumach-headers' package now uses a git checkout and added dependencies on autoconf, automake and texinfo to build. Using those in commencement creates a bootstrap loop. So, revert to a tarball release. * gnu/packages/commencement.scm (gnumach-headers-boot0): Build from tarball; remove autoconf, automake, texinfo bootstrap dependencies.
This commit is contained in:
parent
846f5da129
commit
a50bbf44c7
1 changed files with 14 additions and 1 deletions
|
@ -3028,7 +3028,20 @@ (define with-boot0
|
||||||
%bootstrap-guile))
|
%bootstrap-guile))
|
||||||
|
|
||||||
(define gnumach-headers-boot0
|
(define gnumach-headers-boot0
|
||||||
(with-boot0 (package-with-bootstrap-guile gnumach-headers)))
|
(with-boot0
|
||||||
|
(package-with-bootstrap-guile
|
||||||
|
(package
|
||||||
|
(inherit gnumach-headers)
|
||||||
|
(version "1.8")
|
||||||
|
(source (bootstrap-origin
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "mirror://gnu/gnumach/gnumach-"
|
||||||
|
version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"02hygsfpd2dljl5lg1vjjg9pizi9jyxd4aiiqzjshz6jax62jm9f")))))
|
||||||
|
(native-inputs '())))))
|
||||||
|
|
||||||
(define mig-boot0
|
(define mig-boot0
|
||||||
(let* ((mig (package
|
(let* ((mig (package
|
||||||
|
|
Loading…
Reference in a new issue