guix-commits
[Top][All Lists]
Advanced

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

08/32: gnu: Add rust-mach2-0.4.


From: guix-commits
Subject: 08/32: gnu: Add rust-mach2-0.4.
Date: Thu, 18 Jan 2024 04:27:41 -0500 (EST)

efraim pushed a commit to branch rust-team
in repository guix.

commit 8b8426f6e35c8dcf4844e9dac3bbc113df33c821
Author: Wilko Meyer <w@wmeyer.eu>
AuthorDate: Mon Jan 8 02:52:53 2024 +0100

    gnu: Add rust-mach2-0.4.
    
    * gnu/packages/crates-apple.scm (rust-mach2-0.4): New variable.
    
    Change-Id: I20b06f1dfcb97c1cd9d9ac70dd47138746e2fc20
    Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
---
 gnu/packages/crates-apple.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/crates-apple.scm b/gnu/packages/crates-apple.scm
index 8ae341869d..806d0adc53 100644
--- a/gnu/packages/crates-apple.scm
+++ b/gnu/packages/crates-apple.scm
@@ -10,6 +10,7 @@
 ;;; Copyright © 2021 Vinicius Monego <monego@posteo.net>
 ;;; Copyright © 2023 Steve George <steve@futurile.net>
 ;;; Copyright © 2023 Jaeme Sifat <jaeme@runbox.com>
+;;; Copyright © 2024 Wilko Meyer <w@wmeyer.eu>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -904,6 +905,28 @@ Mach 3.0 kernel that underlies OSX.")
 library")
   (license (list license:asl2.0 license:expat))))
 
+(define-public rust-mach2-0.4
+  (package
+    (name "rust-mach2")
+    (version "0.4.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "mach2" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "02gpyq89rcrqdbz4hgp5bpjas21dllxfc70jgw8vj0iaxg6mbf8r"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:skip-build? #t ; compile_error!("mach requires macOS or iOS");
+       #:cargo-inputs (("rust-libc" ,rust-libc-0.2))))
+    (home-page "https://github.com/JohnTitor/mach2";)
+    (synopsis "Rust interface to the user-space API of the Mach 3.0 kernel")
+    (description
+     "This package provides a Rust interface to the user-space API of the Mach
+3.0 kernel that underlies OSX.")
+    (license (list license:bsd-2 license:expat license:asl2.0))))
+
 (define-public rust-metal-0.18
   (package
     (name "rust-metal")



reply via email to

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