mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 14:28:15 -05:00
gnu: Add rust-bat-0.17.
* gnu/packages/crates-io.scm (rust-bat-0.17): New variable. * gnu/packages/shells.scm (rust-nu-plugin-textview-0.27)[arguments]: Use rust-bat-0.17 instead of bat as Cargo input.
This commit is contained in:
parent
83fdec306e
commit
e321ddd9b3
2 changed files with 47 additions and 2 deletions
|
@ -16855,6 +16855,51 @@ (define-public rust-half-1
|
|||
IEEE 754-2008 binary16 type.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-bat-0.17
|
||||
(package
|
||||
(name "rust-bat")
|
||||
(version "0.17.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "bat" version))
|
||||
(file-name
|
||||
(string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "1ia12774prjnm3msiaja6qdpxkpyknxswqpgkmwzj0wn9nhkc7nz"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
(("rust-ansi-colours" ,rust-ansi-colours-1)
|
||||
("rust-ansi-term" ,rust-ansi-term-0.12)
|
||||
("rust-atty" ,rust-atty-0.2)
|
||||
("rust-clap" ,rust-clap-2)
|
||||
("rust-clap" ,rust-clap-2)
|
||||
("rust-console" ,rust-console-0.13)
|
||||
("rust-content-inspector" ,rust-content-inspector-0.2)
|
||||
("rust-dirs" ,rust-dirs-3)
|
||||
("rust-encoding" ,rust-encoding-0.2)
|
||||
("rust-error-chain" ,rust-error-chain-0.12)
|
||||
("rust-git2" ,rust-git2-0.13)
|
||||
("rust-globset" ,rust-globset-0.4)
|
||||
("rust-lazy-static" ,rust-lazy-static-1)
|
||||
("rust-path-abs" ,rust-path-abs-0.5)
|
||||
("rust-semver" ,rust-semver-0.11)
|
||||
("rust-serde" ,rust-serde-1)
|
||||
("rust-serde-yaml" ,rust-serde-yaml-0.8)
|
||||
("rust-shell-words" ,rust-shell-words-1)
|
||||
("rust-syntect" ,rust-syntect-4)
|
||||
("rust-unicode-width" ,rust-unicode-width-0.1)
|
||||
("rust-wild" ,rust-wild-2))))
|
||||
(home-page "https://github.com/sharkdp/bat")
|
||||
(synopsis "@command{cat} clone with syntax highlighting and git integration")
|
||||
(description
|
||||
"@command{bat} is a drop-in @command{cat} replacement featuring syntax
|
||||
highlighting for a large number of languages, git integration, and automatic
|
||||
paging.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-handlebars-2
|
||||
(package
|
||||
(name "rust-handlebars")
|
||||
|
|
|
@ -1860,8 +1860,8 @@ (define-public rust-nu-plugin-textview-0.27
|
|||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
(("bat" ,bat)
|
||||
("rust-ansi-term" ,rust-ansi-term-0.12)
|
||||
(("rust-ansi-term" ,rust-ansi-term-0.12)
|
||||
("rust-bat" ,rust-bat-0.17)
|
||||
("rust-nu-data" ,rust-nu-data-0.27)
|
||||
("rust-nu-errors" ,rust-nu-errors-0.27)
|
||||
("rust-nu-plugin" ,rust-nu-plugin-0.27)
|
||||
|
|
Loading…
Reference in a new issue