diff options
author | Ludovic Courtès <ludo@gnu.org> | 2020-04-07 15:54:12 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2020-04-11 19:22:26 +0200 |
commit | abbeaf5450826077d27292fbc230f5724f5ff9d0 (patch) | |
tree | 1f97047cb84f3cf359d27ff32dca05b92cf4e438 /gnu/packages/hurd.scm | |
parent | 7e7033d16e96f4c3226fead4820a01b1b32da275 (diff) | |
download | patches-abbeaf5450826077d27292fbc230f5724f5ff9d0.tar patches-abbeaf5450826077d27292fbc230f5724f5ff9d0.tar.gz |
gnu: hurd: Add dependency on libgcrypt.
* gnu/packages/hurd.scm (hurd)[inputs]: Add LIBGCRYPT.
[native-inputs]: Likewise.
Diffstat (limited to 'gnu/packages/hurd.scm')
-rw-r--r-- | gnu/packages/hurd.scm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/packages/hurd.scm b/gnu/packages/hurd.scm index e5ad8e4f73..8d9ba1137d 100644 --- a/gnu/packages/hurd.scm +++ b/gnu/packages/hurd.scm @@ -31,6 +31,7 @@ #:use-module (guix build-system trivial) #:use-module (gnu packages autotools) #:use-module (gnu packages flex) + #:use-module (gnu packages gnupg) #:use-module (gnu packages bison) #:use-module (gnu packages linux) #:use-module (gnu packages perl) @@ -440,6 +441,7 @@ fsysopts / --writable\n")) `(("glibc-hurd-headers" ,glibc/hurd-headers) ("hurd-rc" ,(hurd-rc-script)) + ("libgcrypt" ,libgcrypt) ;for /hurd/random ;; Tools for the /libexec/* scripts. ("bash-minimal" ,bash-minimal) ("coreutils" ,coreutils) @@ -449,6 +451,7 @@ fsysopts / --writable\n")) (native-inputs `(("autoconf" ,autoconf) ("automake" ,automake) + ("libgcrypt" ,libgcrypt) ;for 'libgcrypt-config' ("mig" ,(if (%current-target-system) ;; XXX: When targeting i586-pc-gnu, we need a 32-bit MiG, ;; hence this hack. |