diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2024-01-04 20:33:02 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-02-20 13:57:25 +0200 |
commit | f5794c64636456e0ec545a3f0ffffd1d673a01ad (patch) | |
tree | e71e8ea05dec5c4e54f22ecb75afdf9db065f0e1 /gnu/packages | |
parent | 8278eff1dabc88b81d79327e604018be2d7b4399 (diff) |
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
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/crates-apple.scm | 20 | ||||
-rw-r--r-- | 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 da322335c2..0750b19784 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") |