mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-07 03:44:06 -05:00
gnu: Add rust-sval-2.
* gnu/packages/crates-io.scm (rust-sval-2): New variable. (rust-sval-1): Inherit from rust-sval-2. Change-Id: Idb4c69419c136a305496aed324390d77bfc89775
This commit is contained in:
parent
687a9d0f1a
commit
eafe068478
1 changed files with 26 additions and 7 deletions
|
@ -72380,8 +72380,33 @@ (define-public rust-supports-color-2
|
|||
"Detects whether a terminal supports color, and gives details about that support.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public rust-sval-2
|
||||
(package
|
||||
(name "rust-sval")
|
||||
(version "2.10.2")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "sval" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "0wq8dpcwkxf9i5ivaqgi736kalqdsn88yhsb9fh1dhmpilmg2pdi"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f ; can't find crate for `sval_derive_macros`
|
||||
#:cargo-inputs
|
||||
(("rust-sval-derive-macros" ,rust-sval-derive-macros-2))
|
||||
#:cargo-development-inputs
|
||||
(("rust-humantime" ,rust-humantime-2))))
|
||||
(home-page "https://github.com/sval-rs/sval")
|
||||
(synopsis "No-std, object-safe serialization framework")
|
||||
(description
|
||||
"This package provides a no-std, object-safe serialization framework.")
|
||||
(license (list license:asl2.0 license:expat))))
|
||||
|
||||
(define-public rust-sval-1
|
||||
(package
|
||||
(inherit rust-sval-2)
|
||||
(name "rust-sval")
|
||||
(version "1.0.0-alpha.5")
|
||||
(source
|
||||
|
@ -72391,18 +72416,12 @@ (define-public rust-sval-1
|
|||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "025sy290xnn56nl15qkrkq0whxcwlvb4bzp996azbjl7gdyfxxj5"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
(("rust-serde" ,rust-serde-1)
|
||||
("rust-smallvec" ,rust-smallvec-1)
|
||||
("rust-sval-derive" ,rust-sval-derive-1))))
|
||||
(home-page "https://github.com/sval-rs/sval")
|
||||
(synopsis "No-std, object-safe serialization framework")
|
||||
(description
|
||||
"This package provides a no-std, object-safe serialization framework.")
|
||||
(license (list license:asl2.0 license:expat))))
|
||||
("rust-sval-derive" ,rust-sval-derive-1))))))
|
||||
|
||||
(define-public rust-sval-buffer-2
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue