diff options
author | John Soo <jsoo1@asu.edu> | 2020-11-14 12:42:10 -0800 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2020-11-18 23:00:07 +0100 |
commit | 23526b6716c1add9b1c0e18f4d6ac31cc8f9c967 (patch) | |
tree | eccec6e1b8f68d09ce468e400efa20c91e56fce8 /gnu | |
parent | 54aa60b123bc0417c7ecad0b6cb006f36209339f (diff) |
gnu: Add uuid support to recutils.
* gnu/packages/databases.scm (recutils): [inputs] Add lib output of
util-linux.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/databases.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index 1c71f4116f..79bc173ca6 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -1324,12 +1324,12 @@ organized in a hash table or B+ tree.") (native-inputs `(("bc" ,bc) ("bash:include" ,bash "include") ("check" ,check) - ("libuuid" ,util-linux) ("pkg-config" ,pkg-config))) ;; TODO: Add more optional inputs. (inputs `(("curl" ,curl) - ("libgcrypt" ,libgcrypt))) + ("libgcrypt" ,libgcrypt) + ("libuuid" ,util-linux "lib"))) (synopsis "Manipulate plain text files as databases") (description "GNU Recutils is a set of tools and libraries for creating and |