mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Use target-hurd?, system-hurd? instead of hurd-target?, hurd-system?.
* gnu/packages/hurd.scm (hurd-target?): Remove. (hurd-system?): Move to... * guix/utils.scm (system-hurd?): ...here. * gnu/packages/*: Update all users, removing (gnu packages hurd) include where now unused.
This commit is contained in:
parent
52f2980fa3
commit
ff690faf66
21 changed files with 80 additions and 97 deletions
|
@ -17,6 +17,7 @@
|
|||
;;; Copyright © 2022 Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
|
||||
;;; Copyright © 2022 Antero Mejr <antero@mailbox.org>
|
||||
;;; Copyright © 2023 Philip McGrath <philip@philipmcgrath.com>
|
||||
;;; Copyright © 2023 Janneke Nieuwenhuizen <janneke@gnu.org>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -89,6 +90,7 @@
|
|||
package-name->name+version
|
||||
target-linux?
|
||||
target-hurd?
|
||||
system-hurd?
|
||||
target-mingw?
|
||||
target-x86-32?
|
||||
target-x86-64?
|
||||
|
@ -674,6 +676,10 @@ a character other than '@'."
|
|||
(and (string-suffix? "-gnu" target)
|
||||
(not (string-contains target "linux"))))
|
||||
|
||||
(define* (system-hurd?)
|
||||
"Is the current system the GNU(/Hurd) system?"
|
||||
(and=> (%current-system) target-hurd?))
|
||||
|
||||
(define* (target-mingw? #:optional (target (%current-target-system)))
|
||||
"Is the operating system of TARGET Windows?"
|
||||
(and target
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue