me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-coitrees-0.2.

* gnu/packages/crates-io.scm (rust-coitrees-0.2): New variable.
master
Ricardo Wurmus 2022-09-22 22:36:54 +02:00
parent 4e38e11a0b
commit 93e23c6b26
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 26 additions and 0 deletions

View File

@ -12230,6 +12230,32 @@ diagnostics easy and relatively painless for everyone!")
("rust-structopt" ,rust-structopt-0.3)
("rust-unindent" ,rust-unindent-0.1))))))
(define-public rust-coitrees-0.2
(package
(name "rust-coitrees")
(version "0.2.1")
(source (origin
(method url-fetch)
(uri (crate-uri "coitrees" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1l2ybr8n02vm08wq9mrix7r07bgwm85i6fyachlm8d626w9w9d3f"))))
(build-system cargo-build-system)
(arguments
;; Check phase fails with:
;; no function or associated item named `with_name` found for struct
;; `Arg` in the current scope
`(#:tests? #false
#:cargo-development-inputs
(("rust-clap" ,rust-clap-3))))
(home-page "https://github.com/dcjones/coitrees")
(synopsis "Data structure for overlap queries on sets of intervals")
(description
"This package provides a very fast data structure for overlap queries on
sets of intervals.")
(license license:expat)))
(define-public rust-color-backtrace-0.5
(package
(name "rust-color-backtrace")