me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-nom-2.

* gnu/packages/crates-io.scm (rust-nom-2): New variable.

Change-Id: I9a2518c67145f601de9d525d9bab252ea48d91f2
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
master
normalmente 2024-03-19 03:50:41 +00:00 committed by Efraim Flashner
parent 4a57be2b27
commit 94c12774dd
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 21 additions and 0 deletions

View File

@ -45127,6 +45127,27 @@ combinators library.")
("rust-memchr" ,rust-memchr-1)
("rust-regex" ,rust-regex-0.2))))))
(define-public rust-nom-2
(package
(inherit rust-nom-4)
(name "rust-nom")
(version "2.2.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "nom" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1zv6ig7nw532rl4p35jsahglfhyyznjkblwa6si6c0plxhlsflfg"))))
(arguments
`(#:cargo-test-flags
'("--release" "--" ; Cannot find file for tests.
"--skip=stream::tests::seeking_consumer"
"--skip=big_bunny_test"
"--skip=small_test")
#:cargo-inputs (("rust-lazy-static" ,rust-lazy-static-0.2)
("rust-regex" ,rust-regex-0.2))))))
(define-public rust-nom-1
(package
(inherit rust-nom-4)