guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

31/47: gnu: commencement: hurd-headers-boot0: Update to 0.9.git20230216.


From: guix-commits
Subject: 31/47: gnu: commencement: hurd-headers-boot0: Update to 0.9.git20230216.
Date: Sat, 3 Jun 2023 07:23:41 -0400 (EDT)

janneke pushed a commit to branch wip-hurd
in repository guix.

commit 7f1400848b0e24e3b70967bbc5e80662d1235f72
Author: Janneke Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Tue May 30 06:35:58 2023 +0200

    gnu: commencement: hurd-headers-boot0: Update to 0.9.git20230216.
    
    * gnu/packages/commencement.scm (hurd-headers-boot0): Remove redundant outer
    let and package-with-bootstrap-guile.
    [name]: New field; give proper name.
    [version]: New field.
    [source]: Update to 0.9.git20230216.
    [inputs]: Add autoconf-boot0, automake-boot0, gnumach-headers-boot0.
---
 gnu/packages/commencement.scm | 24 ++++++++++++++++++------
 1 file changed, 18 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index 0421bbe2dd..c07dbb97bc 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -2695,12 +2695,24 @@ memoized as a function of '%current-system'."
         "0bq2q2jisxcy0kgcm6rz0z2fddwxxm7azsama7li28a2m08kdpzy")))))
 
 (define hurd-headers-boot0
-  (let ((hurd-headers (package (inherit hurd-headers)
-                               (version hurd-version-boot0)
-                               (source hurd-source-boot0)
-                               (native-inputs `(("mig" ,mig-boot0)))
-                               (inputs '()))))
-    (with-boot0 (package-with-bootstrap-guile hurd-headers))))
+  (with-boot0
+   (package
+     (inherit hurd-headers)
+     (name "hurd-headers-boot0")
+     (version "0.9.git20230216")
+     (source
+      (origin
+        (method url-fetch)
+        (uri
+         (string-append
+          "https://git.savannah.gnu.org/cgit/hurd/hurd.git/snapshot/hurd-v";
+          version ".tar.gz"))
+        (sha256
+         (base32
+          "1f75nlkcl00dqnnrbrj1frvzs2qibfpygj3gwywqi85aldjl48y7"))))
+     (native-inputs
+      (list autoconf-boot0 automake-boot0 mig-boot0))
+     (inputs '()))))
 
 (define hurd-minimal-boot0
   (let ((hurd-minimal (package (inherit hurd-minimal)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]