diff options
author | Marius Bakke <marius@gnu.org> | 2022-08-27 01:35:48 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2022-08-27 23:48:56 +0200 |
commit | 3e8769f3c98d7d58f7926bc8f658c9b0c0dfb3a2 (patch) | |
tree | 7e4aa239280fcd664e1da1523a1f72bef0ecd671 /gnu/packages/admin.scm | |
parent | b594c7354ce1daedecb3310b55817b69e90adbe9 (diff) | |
download | guix-3e8769f3c98d7d58f7926bc8f658c9b0c0dfb3a2.tar.gz |
gnu: realmd: Remove input labels.
* gnu/packages/admin.scm (realmd)[native-inputs]: Remove labels.
Diffstat (limited to 'gnu/packages/admin.scm')
-rw-r--r-- | gnu/packages/admin.scm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index a4c5189222..b35d50ff56 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -1723,12 +1723,12 @@ over ssh connections.") (substitute* "Makefile" ((".*/service/realmd-.*") ""))))))) (native-inputs - `(("autoconf" ,autoconf) - ("automake" ,automake) - ("glib-bin" ,glib "bin") - ("intltool" ,intltool) - ("pkg-config" ,pkg-config) - ("python" ,python))) + (list autoconf + automake + `(,glib "bin") + intltool + pkg-config + python)) (inputs (list glib mit-krb5 openldap polkit)) (synopsis "DBus service for network authentication") |