mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 14:52:05 -05:00
gnu: drill: Update to 0.8.2.
* gnu/packages/rust-apps.scm (drill): Update to 0.8.2. [arguments]: Don't install the sources. [cargo-inputs]: Add rust-hdrhistogram-7, rust-openssl-sys-0.9. Replace rust-colored-1 with 2, rust-rand-0.7 with 0.8, rust-reqwest-0.10 with 0.11, rust-tokio-0.2 with 1. Change-Id: I097230b1d2aa538b52478310fcf3ce51a4a577ee
This commit is contained in:
parent
86f7cd249b
commit
4064b48eb1
1 changed files with 11 additions and 8 deletions
|
@ -389,31 +389,34 @@ (define-public diffr
|
|||
(define-public drill
|
||||
(package
|
||||
(name "drill")
|
||||
(version "0.7.1")
|
||||
(version "0.8.2")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "drill" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "1m73d7rzi0p5c1hn0081d2235kcyapdza7h0vqf5jhnirpnjn793"))))
|
||||
(base32 "0jp9r19zc9m3hgxc7a98fhyi1ga0qwjprxjsqaxiykmjpb86bxf3"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
`(#:install-source? #f
|
||||
#:cargo-inputs
|
||||
(("rust-async-trait" ,rust-async-trait-0.1)
|
||||
("rust-clap" ,rust-clap-2)
|
||||
("rust-colored" ,rust-colored-1)
|
||||
("rust-colored" ,rust-colored-2)
|
||||
("rust-csv" ,rust-csv-1)
|
||||
("rust-futures" ,rust-futures-0.3)
|
||||
("rust-hdrhistogram" ,rust-hdrhistogram-7)
|
||||
("rust-lazy-static" ,rust-lazy-static-1)
|
||||
("rust-linked-hash-map" ,rust-linked-hash-map-0.5)
|
||||
("rust-num-cpus" ,rust-num-cpus-1)
|
||||
("rust-rand" ,rust-rand-0.7)
|
||||
("rust-openssl-sys" ,rust-openssl-sys-0.9)
|
||||
("rust-rand" ,rust-rand-0.8)
|
||||
("rust-regex" ,rust-regex-1)
|
||||
("rust-reqwest" ,rust-reqwest-0.10)
|
||||
("rust-reqwest" ,rust-reqwest-0.11)
|
||||
("rust-serde" ,rust-serde-1)
|
||||
("rust-serde-json" ,rust-serde-json-1)
|
||||
("rust-tokio" ,rust-tokio-0.2)
|
||||
("rust-tokio" ,rust-tokio-1)
|
||||
("rust-url" ,rust-url-2)
|
||||
("rust-yaml-rust" ,rust-yaml-rust-0.4))))
|
||||
(native-inputs
|
||||
|
@ -423,7 +426,7 @@ (define-public drill
|
|||
(home-page "https://github.com/fcsonline/drill")
|
||||
(synopsis "HTTP load testing application")
|
||||
(description
|
||||
"Drill is a HTTP load testing application written in Rust inspired by
|
||||
"Drill is a HTTP load testing application written in Rust inspired by
|
||||
Ansible syntax. Benchmark files can be written in YAML.")
|
||||
(license license:gpl3)))
|
||||
|
||||
|
|
Loading…
Reference in a new issue