@@ -2062,3 +2062,53 @@ (define-public zoxide
track of the directories you use most frequently, and uses a ranking algorithm
to navigate to the best match.")
(license license:expat)))
+
+(define-public the-way
+ (package
+ (name "the-way")
+ (version "0.18.0")
+ (source (origin
+ (method url-fetch)
+ (uri (crate-uri "the-way" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "19pipvr35i4lfpk01f8gfjpp9rwr8p2qbmgyqgclr1lir2aa8slq"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:cargo-inputs (("rust-bincode" ,rust-bincode-1)
+ ("rust-chrono" ,rust-chrono-0.4)
+ ("rust-chrono-english" ,rust-chrono-english-0.1)
+ ("rust-clap" ,rust-clap-3)
+ ("rust-clap-complete" ,rust-clap-complete-3)
+ ("rust-color-eyre" ,rust-color-eyre-0.6)
+ ("rust-confy" ,rust-confy-0.4)
+ ("rust-dialoguer" ,rust-dialoguer-0.10)
+ ("rust-directories-next" ,rust-directories-next-1)
+ ("rust-eyre" ,rust-eyre-0.6)
+ ("rust-grep-cli" ,rust-grep-cli-0.1)
+ ("rust-hex" ,rust-hex-0.4)
+ ("rust-indicatif" ,rust-indicatif-0.17)
+ ("rust-regex" ,rust-regex-1)
+ ("rust-serde" ,rust-serde-1)
+ ("rust-serde-derive" ,rust-serde-derive-1)
+ ("rust-serde-json" ,rust-serde-json-1)
+ ("rust-serde-yaml" ,rust-serde-yaml-0.9)
+ ("rust-skim" ,rust-skim-0.9)
+ ("rust-sled" ,rust-sled-0.34)
+ ("rust-strum" ,rust-strum-0.24)
+ ("rust-strum-macros" ,rust-strum-macros-0.24)
+ ("rust-syntect" ,rust-syntect-5)
+ ("rust-termcolor" ,rust-termcolor-1)
+ ("rust-thiserror" ,rust-thiserror-1)
+ ("rust-ureq" ,rust-ureq-2))
+ #:cargo-development-inputs (("rust-assert-cmd" ,rust-assert-cmd-2)
+ ("rust-clipboard" ,rust-clipboard-0.5)
+ ("rust-expectrl" ,rust-expectrl-0.5)
+ ("rust-predicates" ,rust-predicates-2)
+ ("rust-tempfile" ,rust-tempfile-3))))
+ (home-page "https://github.com/out-of-cheese-error/the-way")
+ (synopsis "Code snippets manager for your terminal")
+ (description
+ "This package provides a code snippets manager for your terminal.")
+ (license license:expat)))