From 3ab892fffe547c9ae579f2583758b7638d40a2f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Sat, 16 Jun 2012 16:48:14 +0200 Subject: [PATCH] gnu-build-system: Add GNU Diffutils and GNU Path to the standard inputs. * guix/gnu-build-system.scm (%standard-inputs): Add Diffutils and Patch. --- guix/gnu-build-system.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guix/gnu-build-system.scm b/guix/gnu-build-system.scm index 811ae965ac064640392214c52073867d7f599afa..a072c173f5c25a763dfb15705864ec658f7aea82 100644 --- a/guix/gnu-build-system.scm +++ b/guix/gnu-build-system.scm @@ -33,7 +33,7 @@ (define %standard-inputs (map (lambda (name) (list name (nixpkgs-derivation name))) - '("gnutar" "gzip" "bzip2" "xz" + '("gnutar" "gzip" "bzip2" "xz" "diffutils" "patch" "coreutils" "gnused" "gnugrep" "bash" "gcc" "binutils" "gnumake" "glibc")))