me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-ron-0.7.

* gnu/packages/crates-io.scm (rust-ron-0.7): New variable.
(rust-ron-0.6): Inherit from rust-ron-0.7.
master
Efraim Flashner 2023-03-09 16:36:59 +02:00
parent 1f0b0f8f75
commit 7c89fc2230
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 29 additions and 6 deletions

View File

@ -49337,8 +49337,36 @@ responses, and headers for the Rocket web framework.")
network services using futures.") network services using futures.")
(license license:expat))) (license license:expat)))
(define-public rust-ron-0.7
(package
(name "rust-ron")
(version "0.7.1")
(source (origin
(method url-fetch)
(uri (crate-uri "ron" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "06iz51r6pyi197jjpfddq8h8884y85myaswfan07cnqylqwkj1w8"))))
(build-system cargo-build-system)
(arguments
`(#:tests? #f ; Cannot find bitflags_serial.
#:cargo-inputs
(("rust-base64" ,rust-base64-0.13)
("rust-bitflags" ,rust-bitflags-1)
("rust-indexmap" ,rust-indexmap-1)
("rust-serde" ,rust-serde-1))
#:cargo-development-inputs
(("rust-option-set" ,rust-option-set-0.1)
("rust-serde-bytes" ,rust-serde-bytes-0.11)
("rust-serde-json" ,rust-serde-json-1))))
(home-page "https://github.com/ron-rs/ron")
(synopsis "Rusty Object Notation")
(description "This package provides Rusty Object Notation (RON).")
(license (list license:expat license:asl2.0))))
(define-public rust-ron-0.6 (define-public rust-ron-0.6
(package (package
(inherit rust-ron-0.7)
(name "rust-ron") (name "rust-ron")
(version "0.6.4") (version "0.6.4")
(source (source
@ -49348,18 +49376,13 @@ network services using futures.")
(file-name (string-append name "-" version ".tar.gz")) (file-name (string-append name "-" version ".tar.gz"))
(sha256 (sha256
(base32 "07vzhbrnimz1lij0f280y624j4yzipn2404jmygs24mp7xhshkh6")))) (base32 "07vzhbrnimz1lij0f280y624j4yzipn2404jmygs24mp7xhshkh6"))))
(build-system cargo-build-system)
(arguments (arguments
`(#:skip-build? #t `(#:skip-build? #t
#:cargo-inputs #:cargo-inputs
(("rust-base64" ,rust-base64-0.13) (("rust-base64" ,rust-base64-0.13)
("rust-bitflags" ,rust-bitflags-1) ("rust-bitflags" ,rust-bitflags-1)
("rust-indexmap" ,rust-indexmap-1) ("rust-indexmap" ,rust-indexmap-1)
("rust-serde" ,rust-serde-1)))) ("rust-serde" ,rust-serde-1))))))
(home-page "https://github.com/ron-rs/ron")
(synopsis "Rusty Object Notation")
(description "This package provides Rusty Object Notation (RON).")
(license (list license:expat license:asl2.0))))
(define-public rust-ron-0.5 (define-public rust-ron-0.5
(package (package