diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-03-16 20:24:59 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-03-16 23:32:44 +0100 |
commit | e3545ffcf95bffbbd967efd852715f4f0a9be290 (patch) | |
tree | bdadd6223c62b8e865531701ce91598d82a0b279 /gnu/packages/lua.scm | |
parent | 2c257dbfa53a26ec69ae1d5bbeaf85f54e349765 (diff) | |
download | patches-e3545ffcf95bffbbd967efd852715f4f0a9be290.tar patches-e3545ffcf95bffbbd967efd852715f4f0a9be290.tar.gz |
gnu: lua-lpeg: Update to 1.0.2.
* gnu/packages/lua.scm (make-lua-lpeg): Update to 1.0.2.
Diffstat (limited to 'gnu/packages/lua.scm')
-rw-r--r-- | gnu/packages/lua.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/lua.scm b/gnu/packages/lua.scm index 6982733579..a647cf22e7 100644 --- a/gnu/packages/lua.scm +++ b/gnu/packages/lua.scm @@ -410,13 +410,13 @@ Notable examples are GTK+, GStreamer and Webkit.") (define (make-lua-lpeg name lua) (package (name name) - (version "1.0.1") + (version "1.0.2") (source (origin (method url-fetch) (uri (string-append "http://www.inf.puc-rio.br/~roberto/lpeg/lpeg-" version ".tar.gz")) (sha256 - (base32 "0sq25z3r324a324ky73izgq9mbf66j2xvjp0fxf227rwxalzgnb2")))) + (base32 "1zjzl7acvcdavmcg5l7wi12jd4rh95q9pl5aiww7hv0v0mv6bmj8")))) (build-system gnu-build-system) (arguments `(#:phases |