guix-commits
[Top][All Lists]
Advanced

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

07/23: gnu: rust-readkey-0.1: Move to (gnu packages crates-apple).


From: guix-commits
Subject: 07/23: gnu: rust-readkey-0.1: Move to (gnu packages crates-apple).
Date: Thu, 4 Jan 2024 15:39:01 -0500 (EST)

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

commit b4a793466e60a4efca8e602f3e6881282d62b348
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Thu Jan 4 20:33:02 2024 +0200

    gnu: rust-readkey-0.1: Move to (gnu packages crates-apple).
    
    * gnu/packages/crates-io.scm (rust-readkey-0.1): Move from here ...
    * gnu/packages/crates-apple.scm: ... to here.
    
    Change-Id: Ie24d9c158ee88d4f82572ae55326e5967b754d19
---
 gnu/packages/crates-apple.scm | 20 ++++++++++++++++++++
 gnu/packages/crates-io.scm    | 20 --------------------
 2 files changed, 20 insertions(+), 20 deletions(-)

diff --git a/gnu/packages/crates-apple.scm b/gnu/packages/crates-apple.scm
index 2749fb9971..f3965a0928 100644
--- a/gnu/packages/crates-apple.scm
+++ b/gnu/packages/crates-apple.scm
@@ -661,3 +661,23 @@ representation and parsing.")
     (synopsis "Procedural macros for the objc2 project")
     (description "This package provides procedural macros for the objc2 
project.")
     (license license:expat)))
+
+(define-public rust-readkey-0.1
+  (package
+    (name "rust-readkey")
+    (version "0.1.7")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "readkey" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "0iiip8bq4yhal5rv6wlws0xgz798blki7s5ly5cmlwm1ssv03m46"))))
+    (build-system cargo-build-system)
+    (arguments `(#:skip-build? #t))
+    (home-page "https://github.com/segeljakt/readkey";)
+    (synopsis "Library for finding out if a key is currently pressed on macOS")
+    (description
+     "This package provides a very small library for finding out if a key is
+currently pressed on macOS.")
+    (license license:expat)))
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 78e2e604f6..280d8e09cd 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -56527,26 +56527,6 @@ reference counting.")
 @code{rdrand} and @code{rdseed} instructions")
     (license license:isc)))
 
-(define-public rust-readkey-0.1
-  (package
-    (name "rust-readkey")
-    (version "0.1.7")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (crate-uri "readkey" version))
-       (file-name (string-append name "-" version ".tar.gz"))
-       (sha256
-        (base32 "0iiip8bq4yhal5rv6wlws0xgz798blki7s5ly5cmlwm1ssv03m46"))))
-    (build-system cargo-build-system)
-    (arguments `(#:skip-build? #t))
-    (home-page "https://github.com/segeljakt/readkey";)
-    (synopsis "Library for finding out if a key is currently pressed on macOS")
-    (description
-     "This package provides a very small library for finding out if a key is
-currently pressed on macOS.")
-    (license license:expat)))
-
 (define-public rust-recycler-0.1
   (package
     (name "rust-recycler")



reply via email to

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