diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2024-01-23 17:19:08 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-02-20 13:58:29 +0200 |
commit | ed8af9ad1fe6b3e283817f81364feb0f8d1d14dc (patch) | |
tree | d0a48dde9bae87cd3c533e968fa09feae0b4237d /gnu/packages/rust-apps.scm | |
parent | a6b79e790ae88bf4e220ebf25158523b278c11bd (diff) | |
download | guix-ed8af9ad1fe6b3e283817f81364feb0f8d1d14dc.tar.gz |
gnu: hex: Update to 0.6.0.
* gnu/packages/rust-apps.scm (hex): Update to 0.6.0. [source]: Add snippet to remove dependency on rusty-hook. [arguments]: Don't install the sources. [cargo-inputs]: Replace rust-clap-2 with 4. Remove rust-atty-0.2. [cargo-development-inputs]: Replace rust-assert-cmd-1 with 2. Change-Id: Ifb92a65cc55ea563e9c562cfa89a3db75d584643
Diffstat (limited to 'gnu/packages/rust-apps.scm')
-rw-r--r-- | gnu/packages/rust-apps.scm | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/gnu/packages/rust-apps.scm b/gnu/packages/rust-apps.scm index b31e7c9829..9fee03f88c 100644 --- a/gnu/packages/rust-apps.scm +++ b/gnu/packages/rust-apps.scm @@ -1813,26 +1813,32 @@ revert and check changes. (define-public hex (package (name "hex") - (version "0.4.2") + (version "0.6.0") (source (origin ;; crates.io does not provide the test data. + ;; Not all releases are pushed to crates.io. (method git-fetch) (uri (git-reference (url "https://github.com/sitkevij/hex") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "03x27nixdlnkkrh85gy4152arp02kpjwq0i9dn9p73lyr24s64lv")))) + (base32 "0kv07ghibifs6rnskg1na6a0hdb0f8vqfbpv5k8g09lc2075gjv1")) + (snippet + #~(begin (use-modules (guix build utils)) + (substitute* "Cargo.toml" + ;; rusty-hook provides a git hook for CI. + ((".*rusty-hook.*") "")))))) (build-system cargo-build-system) (arguments - `(#:cargo-inputs + `(#:install-source? #f + #:cargo-inputs (("rust-ansi-term" ,rust-ansi-term-0.12) - ("rust-atty" ,rust-atty-0.2) - ("rust-clap" ,rust-clap-2) + ("rust-clap" ,rust-clap-4) ("rust-no-color" ,rust-no-color-0.1)) #:cargo-development-inputs - (("rust-assert-cmd" ,rust-assert-cmd-1)))) + (("rust-assert-cmd" ,rust-assert-cmd-2)))) (home-page "https://github.com/sitkevij/hex") (synopsis "Hexadecimal colorized view of a file") (description |