diff options
author | 宋文武 <iyzsong@member.fsf.org> | 2024-06-18 10:45:17 +0800 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:45:06 +0200 |
commit | 48be2390f666428112074994911162e6a53d99bf (patch) | |
tree | 6d10ebf750dfa0ee8d4da8b91666d83c734dc14d /gnu/packages | |
parent | 62c5331d386cc23a5c56c3f407e482f8d2d2d947 (diff) | |
download | guix-48be2390f666428112074994911162e6a53d99bf.tar.gz guix-48be2390f666428112074994911162e6a53d99bf.zip |
gnu: picolisp: Add libxcrypt dependency.
* gnu/packages/lisp.scm (picolisp32)[inputs]: Add libxcrypt.
Change-Id: I3757ddabfdb5d10325246da9458d554191e9e978
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/lisp.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm index 8270977c78..5d4399f145 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm @@ -1045,7 +1045,8 @@ libraries for Machine Learning, Neural Nets and statistical estimation.") #t)))) (build-system gnu-build-system) (inputs - `(("openssl" ,openssl))) + `(("libxcrypt" ,libxcrypt) + ("openssl" ,openssl))) (arguments `(#:system ,(match (%current-system) ((or "armhf-linux" "aarch64-linux") |