diff options
author | Guillaume Le Vaillant <glv@posteo.net> | 2024-06-12 14:27:18 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:45:05 +0200 |
commit | 79dc6ae4f387f6c048ea421ea31abe9a1c1164bc (patch) | |
tree | df6eaecc08fb0326df5738279c943c6c57fde399 /gnu/packages | |
parent | a2c694dc6d03be728ad55722bc10cb3a864f4d93 (diff) | |
download | guix-79dc6ae4f387f6c048ea421ea31abe9a1c1164bc.tar guix-79dc6ae4f387f6c048ea421ea31abe9a1c1164bc.tar.gz |
gnu: txr: Add missing input.
* gnu/packages/lisp.scm (txr)[inputs]: Add libxcrypt.
Change-Id: I35e306f84be9180627365bbdfcd69b1469b9331b
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/lisp.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm index 23b23ad20a..8270977c78 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm @@ -71,6 +71,7 @@ #:use-module (gnu packages boost) #:use-module (gnu packages check) #:use-module (gnu packages compression) + #:use-module (gnu packages crypto) #:use-module (gnu packages curl) #:use-module (gnu packages dbm) #:use-module (gnu packages elf) @@ -1717,6 +1718,7 @@ the HTML documentation of TXR.") (inputs (list bash-minimal libffi + libxcrypt zlib)) (synopsis "General-purpose, multi-paradigm programming language") (description |