From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:57819) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1e74Rn-00028p-01 for guix-patches@gnu.org; Tue, 24 Oct 2017 15:01:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1e74Ri-0007rY-5c for guix-patches@gnu.org; Tue, 24 Oct 2017 15:01:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:51501) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1e74Ri-0007rQ-1a for guix-patches@gnu.org; Tue, 24 Oct 2017 15:01:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1e74Rh-0000FO-P2 for guix-patches@gnu.org; Tue, 24 Oct 2017 15:01:01 -0400 Subject: [bug#28974] [PATCH 1/1] gnu: syslinux: Propagate mtools as syslinux needs it at runtime. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:57505) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1e74Qj-0001ld-B9 for guix-patches@gnu.org; Tue, 24 Oct 2017 15:00:02 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1e74Qe-000788-Gp for guix-patches@gnu.org; Tue, 24 Oct 2017 15:00:01 -0400 Received: from mail2.vany.ca ([142.54.190.254]:47290) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1e74Qe-00077k-CQ for guix-patches@gnu.org; Tue, 24 Oct 2017 14:59:56 -0400 Received: from adamvy-laptop (unknown [192.159.178.248]) by mail2.vany.ca (Postfix) with ESMTPSA id D97D3AC05CE for ; Tue, 24 Oct 2017 13:59:54 -0500 (CDT) From: Adam Van Ymeren Date: Tue, 24 Oct 2017 14:59:54 -0400 Message-ID: <87mv4gbcd1.fsf@vany.ca> MIME-Version: 1.0 Content-Type: text/plain 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: 28974@debbugs.gnu.org When trying to install syslinux to a FAT partition, it requires the mtools (particularly mcopy) to be available at runtime in PATH. --- gnu/packages/bootloaders.scm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gnu/packages/bootloaders.scm b/gnu/packages/bootloaders.scm index 613537a5d..b747ca579 100644 --- a/gnu/packages/bootloaders.scm +++ b/gnu/packages/bootloaders.scm @@ -44,6 +44,7 @@ #:use-module (gnu packages python) #:use-module (gnu packages texinfo) #:use-module (gnu packages virtualization) + #:use-module (gnu packages mtools) #:use-module (guix build-system gnu) #:use-module (guix download) #:use-module (guix git-download) @@ -237,6 +238,8 @@ menu to select one of the installed operating systems.") ("python-2" ,python-2))) (inputs `(("libuuid" ,util-linux))) + (propagated-inputs + `(("mtools" ,mtools))) (arguments `(#:parallel-build? #f #:make-flags -- 2.14.2