gnu: rust-insta-1: Allow newer versions of dependencies.
* gnu/packages/crates-io.scm (rust-insta-1)[source]: Add snippet to allow newer versions of dependencies. Change-Id: Ie56cae284be7e33c772c3514b7749459d6598925
This commit is contained in:
parent
022d034c11
commit
2fcc8cc458
1 changed files with 6 additions and 1 deletions
|
@ -30627,7 +30627,12 @@ over in-place and buffer-to-buffer modes of operation.")
|
||||||
(uri (crate-uri "insta" version))
|
(uri (crate-uri "insta" version))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1z7v6mzm1djv9sn1k9j796xl2i3llwzj82klcz1cybsbwc5n0r2x"))))
|
(base32 "1z7v6mzm1djv9sn1k9j796xl2i3llwzj82klcz1cybsbwc5n0r2x"))
|
||||||
|
(modules '((guix build utils)))
|
||||||
|
(snippet
|
||||||
|
'(begin (substitute* "Cargo.toml"
|
||||||
|
(("\"=([[:digit:]]+(\\.[[:digit:]]+)*)" _ version)
|
||||||
|
(string-append "\"^" version)))))))
|
||||||
(build-system cargo-build-system)
|
(build-system cargo-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:cargo-test-flags
|
`(#:cargo-test-flags
|
||||||
|
|
Reference in a new issue