diff options
author | Ludovic Courtès <ludo@gnu.org> | 2012-06-28 23:46:00 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2012-06-28 23:46:00 +0200 |
commit | 5791d3b696cf4992a78105e3b758a9fa61468d73 (patch) | |
tree | 9594457d88c8f0147abcbfb7d4c1ba7ef844350b | |
parent | 45753b65529b4e99e522f85f93df8f2269d2dab8 (diff) | |
download | gnu-guix-5791d3b696cf4992a78105e3b758a9fa61468d73.tar gnu-guix-5791d3b696cf4992a78105e3b758a9fa61468d73.tar.gz |
build-system/gnu: Add GNU Awk to the standard inputs.
* guix/build-system/gnu.scm (%standard-inputs): Add GNU Awk.
-rw-r--r-- | guix/build-system/gnu.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/guix/build-system/gnu.scm b/guix/build-system/gnu.scm index c0eef55ba9..acda54e9e7 100644 --- a/guix/build-system/gnu.scm +++ b/guix/build-system/gnu.scm @@ -38,6 +38,7 @@ (list name (nixpkgs-derivation name))) '("gnutar" "gzip" "bzip2" "xz" "diffutils" "patch" "coreutils" "gnused" "gnugrep" "bash" + "gawk" ; used by `config.status' "gcc" "binutils" "gnumake" "glibc")))) (define* (gnu-build store name source inputs |