mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 14:56:54 +01:00
gnu: Add rust-lalrpop-util-0.19.
* gnu/packages/crates-io.scm (rust-lalrpop-util-0.19): New variable, skipping build. (rust-lalrpop-util-0.17): Inherit from rust-lalrpop-util-0.19.
This commit is contained in:
parent
e33eb2dca6
commit
8e111eaf96
1 changed files with 24 additions and 10 deletions
|
@ -13163,8 +13163,31 @@ (define-public rust-lalrpop-0.17
|
|||
grammars.")
|
||||
(license (list license:asl2.0 license:expat))))
|
||||
|
||||
(define-public rust-lalrpop-util-0.19
|
||||
(package
|
||||
(name "rust-lalrpop-util")
|
||||
(version "0.19.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "lalrpop-util" version))
|
||||
(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))))
|
||||
|
||||
(define-public rust-lalrpop-util-0.17
|
||||
(package
|
||||
(inherit rust-lalrpop-util-0.19)
|
||||
(name "rust-lalrpop-util")
|
||||
(version "0.17.2")
|
||||
(source
|
||||
|
@ -13173,16 +13196,7 @@ (define-public rust-lalrpop-util-0.17
|
|||
(uri (crate-uri "lalrpop-util" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "0z4bjn3g9232n1im5p6mn9mwlvw5aj5iac6hbjmljqxkhf3d2xy2"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#: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))))
|
||||
(base32 "0z4bjn3g9232n1im5p6mn9mwlvw5aj5iac6hbjmljqxkhf3d2xy2"))))))
|
||||
|
||||
(define-public rust-lazy-static-1.4
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue