diff options
author | Ludovic Courtès <ludo@gnu.org> | 2020-02-19 22:11:47 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2020-02-19 22:12:16 +0100 |
commit | 971c8bb0a65a730c566eedacd02b689d79c5d562 (patch) | |
tree | eada3048e87e0d19271b7f621c7c2c679e3145ae | |
parent | b6aedea9cc1c7eb701eccdb863275bbb01644ace (diff) | |
download | guix-971c8bb0a65a730c566eedacd02b689d79c5d562.tar.gz |
gnu: gnutls: Add dependency on util-linux.
* gnu/packages/tls.scm (gnutls)[native-inputs]: Add UTIL-LINUX.
-rw-r--r-- | gnu/packages/tls.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/tls.scm b/gnu/packages/tls.scm index d8a767f73f..ca8838a0d6 100644 --- a/gnu/packages/tls.scm +++ b/gnu/packages/tls.scm @@ -226,7 +226,8 @@ living in the same process.") `(("net-tools" ,net-tools) ("pkg-config" ,pkg-config) ("which" ,which) - ("datefudge" ,datefudge))) ;tests rely on 'datefudge' + ("datefudge" ,datefudge) ;tests rely on 'datefudge' + ("util-linux" ,util-linux))) ;one test needs 'setsid' (inputs `(("guile" ,guile-2.2))) (propagated-inputs |