From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51016) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dpYRL-0001Rz-80 for guix-patches@gnu.org; Wed, 06 Sep 2017 07:24:16 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dpYR8-0004ru-Or for guix-patches@gnu.org; Wed, 06 Sep 2017 07:24:15 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:43694) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dpYR8-0004rc-HZ for guix-patches@gnu.org; Wed, 06 Sep 2017 07:24:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dpYR8-0001RM-72 for guix-patches@gnu.org; Wed, 06 Sep 2017 07:24:02 -0400 Subject: [bug#28369] [PATCH 1/3] gnu: accountsservice: Add missing input. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:50171) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dpYQ6-0001KS-Ew for guix-patches@gnu.org; Wed, 06 Sep 2017 07:22:59 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dpYQ1-0004Oy-HK for guix-patches@gnu.org; Wed, 06 Sep 2017 07:22:58 -0400 Received: from mail-lf0-x22e.google.com ([2a00:1450:4010:c07::22e]:34130) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dpYQ1-0004OZ-AT for guix-patches@gnu.org; Wed, 06 Sep 2017 07:22:53 -0400 Received: by mail-lf0-x22e.google.com with SMTP id l196so16961661lfl.1 for ; Wed, 06 Sep 2017 04:22:53 -0700 (PDT) From: Peter Mikkelsen Date: Wed, 6 Sep 2017 13:22:37 +0200 Message-Id: <20170906112239.13894-1-petermikkelsen10@gmail.com> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 28369@debbugs.gnu.org * gnu/packages/freedesktop.scm (accountsservice)[inputs]: Add libcap. --- gnu/packages/freedesktop.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gnu/packages/freedesktop.scm b/gnu/packages/freedesktop.scm index 9f4d43320..b1d09104d 100644 --- a/gnu/packages/freedesktop.scm +++ b/gnu/packages/freedesktop.scm @@ -681,7 +681,8 @@ message bus.") ("intltool" ,intltool) ("pkg-config" ,pkg-config))) (inputs - `(("shadow" ,shadow) + `(("libcap" ,libcap) + ("shadow" ,shadow) ("polkit" ,polkit))) (home-page "http://www.freedesktop.org/wiki/Software/AccountsService/") (synopsis "D-Bus interface for user account query and manipulation") -- 2.14.1