iyzsong pushed a commit to branch core-updates
in repository guix.

commit cae84c5e1abf0f96a249ade06dc8d9c564f02d6d
Author: 宋文武 <iyzs...@member.fsf.org>
AuthorDate: Wed Jun 19 09:09:36 2024 +0800

    gnu: cling: Add libxcrypt dependency.
    
    * gnu/packages/llvm.scm (cling)[inputs]: Add libxcrypt.
    
    Change-Id: I240b73ba1bb2fd3e2d7215c6b342aa45830236cf
---
 gnu/packages/llvm.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/llvm.scm b/gnu/packages/llvm.scm
index fccfd0b516..950165866d 100644
--- a/gnu/packages/llvm.scm
+++ b/gnu/packages/llvm.scm
@@ -60,6 +60,7 @@
   #:use-module (gnu packages)
   #:use-module (gnu packages autotools)
   #:use-module (gnu packages base)
+  #:use-module (gnu packages crypto)
   #:use-module (gnu packages gcc)
   #:use-module (gnu packages bootstrap)           ;glibc-dynamic-linker
   #:use-module (gnu packages check)               ;python-lit
@@ -2382,7 +2383,7 @@ LLVM bitcode files.")
             (lambda _
               (for-each delete-file (find-files #$output "\\.a$")))))))
     (native-inputs (list python python-lit))
-    (inputs (list clang-cling llvm-cling))
+    (inputs (list clang-cling llvm-cling libxcrypt))
     (home-page "https://root.cern/cling/";)
     (synopsis "Interactive C++ interpreter")
     (description "Cling is an interactive C++17 standard compliant

Reply via email to