mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-15 23:48:07 -05:00
gnu: Add rust-base64-0.21.
* gnu/packages/crates-io.scm (rust-base64-0.21): New variable. (rust-base64-0.13): Inherit from it.
This commit is contained in:
parent
f26dd44e5b
commit
c23d10751c
1 changed files with 39 additions and 11 deletions
|
@ -5733,8 +5733,42 @@ (define-public rust-base58-0.1
|
||||||
c6e7d37. However, this package works only up to 128 bytes.")
|
c6e7d37. However, this package works only up to 128 bytes.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public rust-base64-0.21
|
||||||
|
(package
|
||||||
|
(name "rust-base64")
|
||||||
|
(version "0.21.0")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "base64" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0sidjip5b33sr6w7kasfj9qxpbda41nw0x4gjjk55g55a6mdv954"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-development-inputs
|
||||||
|
(("rust-criterion" ,rust-criterion-0.4)
|
||||||
|
("rust-rand" ,rust-rand-0.8)
|
||||||
|
("rust-rstest" ,rust-rstest-0.15)
|
||||||
|
("rust-rstest-reuse" ,rust-rstest-reuse-0.4)
|
||||||
|
("rust-structopt" ,rust-structopt-0.3))
|
||||||
|
#:phases (modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'relax-requirements
|
||||||
|
(lambda _
|
||||||
|
(substitute* "Cargo.toml"
|
||||||
|
(("0.12.0")
|
||||||
|
,(package-version rust-rstest-0.15))
|
||||||
|
(("0.3.0")
|
||||||
|
,(package-version rust-rstest-reuse-0.4))))))))
|
||||||
|
(home-page "https://github.com/marshallpierce/rust-base64")
|
||||||
|
(synopsis "Encodes and decodes base64 as bytes or utf8")
|
||||||
|
(description
|
||||||
|
"This package encodes and decodes base64 as bytes or utf8.")
|
||||||
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
(define-public rust-base64-0.13
|
(define-public rust-base64-0.13
|
||||||
(package
|
(package
|
||||||
|
(inherit rust-base64-0.21)
|
||||||
(name "rust-base64")
|
(name "rust-base64")
|
||||||
(version "0.13.0")
|
(version "0.13.0")
|
||||||
(source
|
(source
|
||||||
|
@ -5745,7 +5779,6 @@ (define-public rust-base64-0.13
|
||||||
(string-append name "-" version ".tar.gz"))
|
(string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1z82g23mbzjgijkpcrilc7nljpxpvpf7zxf6iyiapkgka2ngwkch"))))
|
(base32 "1z82g23mbzjgijkpcrilc7nljpxpvpf7zxf6iyiapkgka2ngwkch"))))
|
||||||
(build-system cargo-build-system)
|
|
||||||
(arguments
|
(arguments
|
||||||
`(#:skip-build? #t
|
`(#:skip-build? #t
|
||||||
#:cargo-development-inputs
|
#:cargo-development-inputs
|
||||||
|
@ -5753,17 +5786,12 @@ (define-public rust-base64-0.13
|
||||||
("rust-rand" ,rust-rand-0.6)
|
("rust-rand" ,rust-rand-0.6)
|
||||||
("rust-structopt" ,rust-structopt-0.3))
|
("rust-structopt" ,rust-structopt-0.3))
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'fix-criterion-minor-version
|
(add-after 'unpack 'fix-criterion-minor-version
|
||||||
(lambda* _
|
(lambda* _
|
||||||
(substitute* "Cargo.toml"
|
(substitute* "Cargo.toml"
|
||||||
(("0\\.3\\.2")
|
(("0\\.3\\.2")
|
||||||
,(package-version rust-criterion-0.3))))))))
|
,(package-version rust-criterion-0.3))))))))))
|
||||||
(home-page "https://github.com/marshallpierce/rust-base64")
|
|
||||||
(synopsis "Encodes and decodes base64 as bytes or utf8")
|
|
||||||
(description
|
|
||||||
"This package encodes and decodes base64 as bytes or utf8.")
|
|
||||||
(license (list license:expat license:asl2.0))))
|
|
||||||
|
|
||||||
(define-public rust-base64-0.12
|
(define-public rust-base64-0.12
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in a new issue