me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-ntest-timeout-0.9.

* gnu/packages/crates-io.scm (rust-ntest-timeout-0.9): New variable.
(rust-ntest-timeout-0.8): Inherit from rust-ntest-timeout-0.9.
Efraim Flashner 2023-08-02 19:58:22 +03:00
parent 26c44890dc
commit 2460d877f3
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 26 additions and 7 deletions

View File

@ -41442,8 +41442,33 @@ enhances the built-in library with some useful features.")
("rust-quote" ,rust-quote-1)
("rust-syn" ,rust-syn-1))))))
(define-public rust-ntest-timeout-0.9
(package
(name "rust-ntest-timeout")
(version "0.9.0")
(source (origin
(method url-fetch)
(uri (crate-uri "ntest-timeout" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1948a5ps329acg8fy2c2dyjgc8f96l0gin271cpl0yjq420lcsq6"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-proc-macro-crate" ,rust-proc-macro-crate-1)
("rust-proc-macro2" ,rust-proc-macro2-1)
("rust-quote" ,rust-quote-1)
("rust-syn" ,rust-syn-1))))
(home-page "https://github.com/becheran/ntest")
(synopsis "Timeout attribute for the ntest framework")
(description "This package provides a timeout attribute for the ntest
framework.")
(license license:expat)))
(define-public rust-ntest-timeout-0.8
(package
(inherit rust-ntest-timeout-0.9)
(name "rust-ntest-timeout")
(version "0.8.1")
(source
@ -41453,19 +41478,13 @@ enhances the built-in library with some useful features.")
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "01vcdlz9xj471z5knk2qynm7adz3p614glf6n0pgn161qynym9mw"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-ntest-proc-macro-helper" ,rust-ntest-proc-macro-helper-0.8)
("rust-proc-macro-crate" ,rust-proc-macro-crate-1)
("rust-proc-macro2" ,rust-proc-macro2-1)
("rust-quote" ,rust-quote-1)
("rust-syn" ,rust-syn-1))))
(home-page "https://github.com/becheran/ntest")
(synopsis "Timeout attribute for the ntest framework")
(description "This package provides a timeout attribute for the ntest
framework.")
(license license:expat)))
("rust-syn" ,rust-syn-1))))))
(define-public rust-ntest-proc-macro-helper-0.8
(package