From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:58973) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hAGmP-0003WV-LQ for guix-patches@gnu.org; Sat, 30 Mar 2019 12:24:26 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hAGmM-00072C-A2 for guix-patches@gnu.org; Sat, 30 Mar 2019 12:24:25 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:52230) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hAGm2-0006tJ-Ph for guix-patches@gnu.org; Sat, 30 Mar 2019 12:24:08 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hAGm2-0005bb-Ls for guix-patches@gnu.org; Sat, 30 Mar 2019 12:24:02 -0400 Subject: [bug#35050] [PATCH] gnu: direnv: Fix build failure. Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:58844) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hAGkf-0002iC-M2 for guix-patches@gnu.org; Sat, 30 Mar 2019 12:22:38 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hAGkN-0005th-RG for guix-patches@gnu.org; Sat, 30 Mar 2019 12:22:25 -0400 Received: from mail-lf1-x141.google.com ([2a00:1450:4864:20::141]:46274) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hAGkH-0004TW-8d for guix-patches@gnu.org; Sat, 30 Mar 2019 12:22:13 -0400 Received: by mail-lf1-x141.google.com with SMTP id r25so3420107lfn.13 for ; Sat, 30 Mar 2019 09:20:06 -0700 (PDT) From: Oleg Pykhalov Date: Sat, 30 Mar 2019 19:19:53 +0300 Message-Id: <20190330161953.20491-1-go.wigust@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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: 35050@debbugs.gnu.org * gnu/packages/shellutils.scm (direnv)[arguments]: Setup Go environment after unpack. --- gnu/packages/shellutils.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gnu/packages/shellutils.scm b/gnu/packages/shellutils.scm index 88c0f32e99..b32f184e96 100644 --- a/gnu/packages/shellutils.scm +++ b/gnu/packages/shellutils.scm @@ -5,6 +5,7 @@ ;;; Copyright © 2017 Stefan Reichör ;;; Copyright © 2018 Tobias Geerinckx-Rice ;;; Copyright © 2018 Benjamin Slade +;;; Copyright © 2019 Oleg Pykhalov ;;; ;;; This file is part of GNU Guix. ;;; @@ -127,7 +128,7 @@ are already there.") (modify-phases %standard-phases (delete 'configure) ;; Help the build scripts find the Go language dependencies. - (add-before 'unpack 'setup-go-environment + (add-after 'unpack 'setup-go-environment (assoc-ref go:%standard-phases 'setup-go-environment))))) (inputs `(("go" ,go) -- 2.21.0