me
/
guix
Archived
1
0
Fork 0

gnu: hurd-headers: Update snapshot.

* gnu/packages/hurd.scm (hurd-headers): Update to 0.9-1.91a5167.
[version]: Use GIT-VERSION.
[arguments]: Add "--without-libcrypt" in #:configure-flags.
master
Marius Bakke 2020-02-16 15:18:39 +01:00
parent 778d6b522a
commit f379c665a8
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 6 additions and 4 deletions

View File

@ -2,6 +2,7 @@
;;; Copyright © 2014, 2015, 2016, 2017 Manolis Fragkiskos Ragkousis <manolis837@gmail.com> ;;; Copyright © 2014, 2015, 2016, 2017 Manolis Fragkiskos Ragkousis <manolis837@gmail.com>
;;; Copyright © 2018 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2018 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2020 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2020 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2020 Marius Bakke <mbakke@fastmail.com>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
@ -129,11 +130,11 @@ communication.")
(define-public hurd-headers (define-public hurd-headers
;; Resort to a post-0.9 snapshot that provides the 'file_utimens' and ;; Resort to a post-0.9 snapshot that provides the 'file_utimens' and
;; 'file_exec_paths' RPCs that glibc 2.28 expects. ;; 'file_exec_paths' RPCs that glibc 2.28 expects.
(let ((revision "0") (let ((revision "1")
(commit "98b33905c89b7e5c309c74ae32302a5745901a6e")) (commit "91a51672ff4cfe1f1a0712b4c542ded3081c825b"))
(package (package
(name "hurd-headers") (name "hurd-headers")
(version "0.9") (version (git-version "0.9" revision commit))
(source (origin (source (origin
(method git-fetch) (method git-fetch)
(uri (git-reference (uri (git-reference
@ -141,7 +142,7 @@ communication.")
(commit commit))) (commit commit)))
(sha256 (sha256
(base32 (base32
"1mj22sxgscas2675vrbxr477mwbxdj68pqcrh65lbir8qlssrgrf")) "16k9wkahz9wasviijz53n6i13nmiwa9fs64ikf1jqh8rl60hw7cz"))
(file-name (git-file-name name version)))) (file-name (git-file-name name version))))
(build-system gnu-build-system) (build-system gnu-build-system)
(native-inputs (native-inputs
@ -167,6 +168,7 @@ communication.")
"--disable-ncursesw" "--disable-ncursesw"
"--disable-test" "--disable-test"
"--without-libbz2" "--without-libbz2"
"--without-libcrypt"
"--without-libz" "--without-libz"
;; Skip the clnt_create check because it expects ;; Skip the clnt_create check because it expects
;; a working glibc causing a circular dependency. ;; a working glibc causing a circular dependency.