diff options
author | Ludovic Courtès <ludo@gnu.org> | 2012-06-16 16:48:14 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2012-06-16 16:48:14 +0200 |
commit | 3ab892fffe547c9ae579f2583758b7638d40a2f6 (patch) | |
tree | b0dd95322448046889a0d13a3835009f992f0c70 | |
parent | db393b333f77ffbb573faf47b6df74dc65a0e85b (diff) |
gnu-build-system: Add GNU Diffutils and GNU Path to the standard inputs.
* guix/gnu-build-system.scm (%standard-inputs): Add Diffutils and Patch.
-rw-r--r-- | guix/gnu-build-system.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/gnu-build-system.scm b/guix/gnu-build-system.scm index 811ae965ac..a072c173f5 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"))) |