diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2024-01-23 16:50:57 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-02-20 13:58:28 +0200 |
commit | f79b586fa5a668f1f4db445b2bb1abb61bb8b93a (patch) | |
tree | 3f5b5882c516d959e5b5cd5a2b4adc582fbc464d | |
parent | 3aeb9c50a025a841725c285b9978d0b32d019c95 (diff) | |
download | guix-f79b586fa5a668f1f4db445b2bb1abb61bb8b93a.tar.gz |
gnu: rot8: Update to 1.0.0.
* gnu/packages/rust-apps.scm (rot8): Update to 1.0.0. [arguments]: Don't install the sources. [cargo-inputs]: Add rust-wayland-client-0.31, rust-wayland-protocols-wlr-0.2. Replace rust-clap-2 with 3. Change-Id: I6104c654a500323d2fca22ac4e4815f13e2544b3
-rw-r--r-- | gnu/packages/rust-apps.scm | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/gnu/packages/rust-apps.scm b/gnu/packages/rust-apps.scm index 0deb3b025f..03d7833822 100644 --- a/gnu/packages/rust-apps.scm +++ b/gnu/packages/rust-apps.scm @@ -1247,21 +1247,25 @@ search tools like The Silver Searcher, @command{ack} and @command{grep}.") (define-public rot8 (package (name "rot8") - (version "0.1.4") + (version "1.0.0") (source (origin (method url-fetch) (uri (crate-uri "rot8" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 - "1m5kzpqq9pgc19lbnh20iaq654lzlmc1m5fc9f73w2vpwqdiw1qf")))) + "1bvb87sr9pkf6sj5ghgmga4nrp5kwiqnllzi672da5vs915xh8li")))) (build-system cargo-build-system) (arguments - `(#:cargo-inputs (("rust-clap" ,rust-clap-2) - ("rust-glob" ,rust-glob-0.3) - ("rust-regex" ,rust-regex-1) - ("rust-serde" ,rust-serde-1) - ("rust-serde-json" ,rust-serde-json-1)))) + `(#:install-source? #f + #:cargo-inputs + (("rust-clap" ,rust-clap-3) + ("rust-glob" ,rust-glob-0.3) + ("rust-regex" ,rust-regex-1) + ("rust-serde" ,rust-serde-1) + ("rust-serde-json" ,rust-serde-json-1) + ("rust-wayland-client" ,rust-wayland-client-0.31) + ("rust-wayland-protocols-wlr" ,rust-wayland-protocols-wlr-0.2)))) (home-page "https://github.com/efernau/rot8/") (synopsis "Automatic display rotation using built-in accelerometer") (description "@command{rot8} is a daemon that automates rotating screen and |