me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-ena-0.14:

* gnu/packages/crates-io.scm (rust-ena-0.14): New variable, skipping
  build.  (rust-ena-0.13): Inherit from rust-ena-0.14.
master
Hartmut Goebel 2020-10-18 01:45:48 +02:00
parent fc6bb13018
commit e33eb2dca6
No known key found for this signature in database
GPG Key ID: 634A8DFFD3F631DF
1 changed files with 18 additions and 4 deletions

View File

@ -7365,20 +7365,21 @@ floating-point primitives to an @code{io::Write}.")
inclusion of Windows resources in the most resilient fashion imaginable.") inclusion of Windows resources in the most resilient fashion imaginable.")
(license license:expat))) (license license:expat)))
(define-public rust-ena-0.13 (define-public rust-ena-0.14
(package (package
(name "rust-ena") (name "rust-ena")
(version "0.13.1") (version "0.14.0")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (crate-uri "ena" version)) (uri (crate-uri "ena" version))
(file-name (string-append name "-" version ".tar.gz")) (file-name (string-append name "-" version ".tar.gz"))
(sha256 (sha256
(base32 "0dkggq0qwv140y2kjfd4spp77zi3v7vnpm4bfy7s7r4cla7xqi49")))) (base32 "1hrnkx2swbczn0jzpscxxipx7jcxhg6sf9vk911ff91wm6a2nh6p"))))
(build-system cargo-build-system) (build-system cargo-build-system)
(arguments (arguments
`(#:cargo-inputs `(#:skip-build? #t
#:cargo-inputs
(("rust-dogged" ,rust-dogged-0.2) (("rust-dogged" ,rust-dogged-0.2)
("rust-log" ,rust-log-0.4) ("rust-log" ,rust-log-0.4)
("rust-petgraph" ,rust-petgraph-0.4)))) ("rust-petgraph" ,rust-petgraph-0.4))))
@ -7389,6 +7390,19 @@ congruence-closure in Rust. It was extracted from rustc for independent
experimentation.") experimentation.")
(license (list license:expat license:asl2.0)))) (license (list license:expat license:asl2.0))))
(define-public rust-ena-0.13
(package
(inherit rust-ena-0.14)
(name "rust-ena")
(version "0.13.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "ena" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0dkggq0qwv140y2kjfd4spp77zi3v7vnpm4bfy7s7r4cla7xqi49"))))))
(define-public rust-encode-unicode-0.3 (define-public rust-encode-unicode-0.3
(package (package
(name "rust-encode-unicode") (name "rust-encode-unicode")