diff options
author | Guillaume Le Vaillant <glv@posteo.net> | 2022-06-13 11:06:57 +0200 |
---|---|---|
committer | Guillaume Le Vaillant <glv@posteo.net> | 2022-06-13 11:06:57 +0200 |
commit | c318f4fcb190adaab4de491014f59eb79a28efc5 (patch) | |
tree | 7f06a47aa050c98d0641348c0e2eb1fca64215d2 | |
parent | 6aa457fed15157495121646b57c22ec68af41fb7 (diff) | |
download | guix-c318f4fcb190adaab4de491014f59eb79a28efc5.tar.gz |
gnu: txr: Update to 277.
* gnu/packages/lisp.scm (txr): Update to 277. [inputs]: Add zlib.
-rw-r--r-- | gnu/packages/lisp.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm index ca85cab2b9..c26da670ac 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm @@ -923,7 +923,7 @@ the HTML documentation of TXR.") (define-public txr (package (name "txr") - (version "274") + (version "277") (source (origin (method git-fetch) @@ -932,7 +932,7 @@ the HTML documentation of TXR.") (commit (string-append "txr-" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "0sz5wqqhmj2b9h9q95s8x4gb4cia6qddqp2mg29a5dpdh6jh3qyp")))) + (base32 "1w6q5inydz0cf4g3y8954msxfb2clf4nj4aqiiayp0z2y96b7bhk")))) (build-system gnu-build-system) (arguments `(#:configure-flags @@ -991,7 +991,8 @@ the HTML documentation of TXR.") man-for-txr)) (inputs (list bash-minimal - libffi)) + libffi + zlib)) (synopsis "General-purpose, multi-paradigm programming language") (description "TXR is a general-purpose, multi-paradigm programming language. It |