mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: rust-jpeg-decoder-0.3: Update to 0.3.1.
* gnu/packages/crates-graphics.scm (rust-jpeg-decoder-0.3): Update to 0.3.1. [source]: Adjust the snippet to continue allowing for newer versions of dependencies. Change-Id: If0fc35f8a757ae92b7e24356a2f6082657f48427
This commit is contained in:
parent
146cbaaf11
commit
6afcc09584
1 changed files with 4 additions and 3 deletions
|
@ -2679,18 +2679,19 @@ pixel buffers with width, height and stride.")
|
||||||
(define-public rust-jpeg-decoder-0.3
|
(define-public rust-jpeg-decoder-0.3
|
||||||
(package
|
(package
|
||||||
(name "rust-jpeg-decoder")
|
(name "rust-jpeg-decoder")
|
||||||
(version "0.3.0")
|
(version "0.3.1")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (crate-uri "jpeg-decoder" version))
|
(uri (crate-uri "jpeg-decoder" version))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0gkv0zx95i4fr40fj1a10d70lqi6lfyia8r5q8qjxj8j4pj0005w"))
|
(base32 "1c1k53svpdyfhibkmm0ir5w0v3qmcmca8xr8vnnmizwf6pdagm7m"))
|
||||||
(modules '((guix build utils)))
|
(modules '((guix build utils)))
|
||||||
(snippet
|
(snippet
|
||||||
'(begin
|
'(begin
|
||||||
(substitute* "Cargo.toml"
|
(substitute* "Cargo.toml"
|
||||||
(("=0\\.2\\.83") "^0.2.83"))))))
|
(("\"=([[:digit:]]+(\\.[[:digit:]]+)*)" _ version)
|
||||||
|
(string-append "\"^" version)))))))
|
||||||
(build-system cargo-build-system)
|
(build-system cargo-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; Not all files included
|
`(#:tests? #f ; Not all files included
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue