From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mp2 ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by ms11 with LMTPS id aOkoDeWykV8KcgAA0tVLHw (envelope-from ) for ; Thu, 22 Oct 2020 16:27:17 +0000 Received: from aspmx1.migadu.com ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by mp2 with LMTPS id UE+QB+WykV//OQAAB5/wlQ (envelope-from ) for ; Thu, 22 Oct 2020 16:27:17 +0000 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by aspmx1.migadu.com (Postfix) with ESMTPS id A8C0F9403A6 for ; Thu, 22 Oct 2020 16:27:16 +0000 (UTC) Received: from localhost ([::1]:51662 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1kVdQp-0001r2-KJ for larch@yhetil.org; Thu, 22 Oct 2020 12:27:15 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:53438) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kVdQd-0001qT-R4 for guix-patches@gnu.org; Thu, 22 Oct 2020 12:27:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:42127) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1kVdQd-0004uo-2Q for guix-patches@gnu.org; Thu, 22 Oct 2020 12:27:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1kVdQc-0000Pf-VD for guix-patches@gnu.org; Thu, 22 Oct 2020 12:27:02 -0400 X-Loop: help-debbugs@gnu.org Subject: [bug#44143] [PATCH 2/5] gnu: guix-build-coordinator: Ensure gnutls is available. Resent-From: Christopher Baines Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Thu, 22 Oct 2020 16:27:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 44143 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 44143@debbugs.gnu.org Received: via spool by 44143-submit@debbugs.gnu.org id=B44143.16033839661471 (code B ref 44143); Thu, 22 Oct 2020 16:27:02 +0000 Received: (at 44143) by debbugs.gnu.org; 22 Oct 2020 16:26:06 +0000 Received: from localhost ([127.0.0.1]:53665 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kVdPi-0000NZ-9t for submit@debbugs.gnu.org; Thu, 22 Oct 2020 12:26:06 -0400 Received: from mira.cbaines.net ([212.71.252.8]:47592) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kVdPg-0000Mn-7E for 44143@debbugs.gnu.org; Thu, 22 Oct 2020 12:26:05 -0400 Received: from localhost (92.41.179.191.threembb.co.uk [92.41.179.191]) by mira.cbaines.net (Postfix) with ESMTPSA id 6CC2227BBF0 for <44143@debbugs.gnu.org>; Thu, 22 Oct 2020 17:26:03 +0100 (BST) Received: from localhost (localhost [local]) by localhost (OpenSMTPD) with ESMTPA id 11701f07 for <44143@debbugs.gnu.org>; Thu, 22 Oct 2020 16:26:01 +0000 (UTC) From: Christopher Baines Date: Thu, 22 Oct 2020 17:25:58 +0100 Message-Id: <20201022162601.3757-2-mail@cbaines.net> X-Mailer: git-send-email 2.28.0 In-Reply-To: <20201022162601.3757-1-mail@cbaines.net> References: <87eelqgrso.fsf@cbaines.net> <20201022162601.3757-1-mail@cbaines.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list X-Spam-Score: -1.0 (-) X-BeenThere: guix-patches@gnu.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+larch=yhetil.org@gnu.org Sender: "Guix-patches" X-Scanner: scn0 Authentication-Results: aspmx1.migadu.com; dkim=none; dmarc=none; spf=pass (aspmx1.migadu.com: domain of guix-patches-bounces@gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=guix-patches-bounces@gnu.org X-Spam-Score: 3.99 X-TUID: c7eI1knnT+qb Some hooks expect this to be available. * gnu/packages/package-management.scm (guix-build-coordinator) [inputs,native-inputs]: Add gnutls. --- gnu/packages/package-management.scm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gnu/packages/package-management.scm b/gnu/packages/package-management.scm index 45c3d4d5cf..349897fd16 100644 --- a/gnu/packages/package-management.scm +++ b/gnu/packages/package-management.scm @@ -1048,6 +1048,7 @@ environments.") `(("pkg-config" ,pkg-config) ("autoconf" ,autoconf) ("automake" ,automake) + ("gnutls" ,gnutls) ;; Guile libraries are needed here for cross-compilation. ("guile-json" ,guile-json-3) @@ -1066,6 +1067,7 @@ environments.") ("guile-zlib" ,guile-zlib) ("guile-sqlite3" ,guile-sqlite3) ("guix" ,guix) + ("gnutls" ,gnutls) ("sqlite" ,sqlite) ("sqitch" ,sqitch))) (home-page "https://git.cbaines.net/guix/build-coordinator/") -- 2.28.0