mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-23 19:19:20 -05:00
gnu: Add rust-lalrpop-util-0.20.
* gnu/packages/crates-io.scm (rust-lalrpop-util-0.20): New variable. (rust-lalrpop-util-0.19): Inherit from rust-lalrpop-util-0.20. Change-Id: I0e44395a92e7166a4a937fa91ff1a7ad5185514d
This commit is contained in:
parent
cc766a32e3
commit
7b1e223149
1 changed files with 22 additions and 8 deletions
|
@ -36361,8 +36361,29 @@ (define-public rust-lalrpop-0.17
|
|||
#:cargo-development-inputs
|
||||
(("rust-rand" ,rust-rand-0.6))))))
|
||||
|
||||
(define-public rust-lalrpop-util-0.20
|
||||
(package
|
||||
(name "rust-lalrpop-util")
|
||||
(version "0.20.2")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "lalrpop-util" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "0lr5r12bh9gjjlmnjrbblf4bfcwnad4gz1hqjvp34yzb22ln0x2h"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs (("rust-regex-automata" ,rust-regex-automata-0.4))))
|
||||
(home-page "https://github.com/lalrpop/lalrpop")
|
||||
(synopsis "Runtime library for parsers generated by LALRPOP")
|
||||
(description "THis package provides the runtime library for parsers
|
||||
generated by LALRPOP.")
|
||||
(license (list license:asl2.0 license:expat))))
|
||||
|
||||
(define-public rust-lalrpop-util-0.19
|
||||
(package
|
||||
(inherit rust-lalrpop-util-0.20)
|
||||
(name "rust-lalrpop-util")
|
||||
(version "0.19.1")
|
||||
(source
|
||||
|
@ -36372,16 +36393,9 @@ (define-public rust-lalrpop-util-0.19
|
|||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "0224r8gsbk8and96nhwgzdj4hc1c01g78zmvv3x4f5jnzwg1cwb7"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
(("rust-regex" ,rust-regex-1))))
|
||||
(home-page "https://github.com/lalrpop/lalrpop")
|
||||
(synopsis "Runtime library for parsers generated by LALRPOP")
|
||||
(description "THis package provides the runtime library for parsers
|
||||
generated by LALRPOP.")
|
||||
(license (list license:asl2.0 license:expat))))
|
||||
#:cargo-inputs (("rust-regex" ,rust-regex-1))))))
|
||||
|
||||
(define-public rust-lalrpop-util-0.17
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue