diff options
author | Ludovic Courtès <ludo@gnu.org> | 2012-09-01 19:21:06 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2012-09-02 19:01:28 +0200 |
commit | 8bb9f66fc60d4e14919c92ca80741fe725b2d34e (patch) | |
tree | 75d26bfddae6ce8a9a8541419053af2f496c8eff | |
parent | 0a3da5b7f048359afb3dc4b3317a9789c02bd301 (diff) | |
download | patches-8bb9f66fc60d4e14919c92ca80741fe725b2d34e.tar patches-8bb9f66fc60d4e14919c92ca80741fe725b2d34e.tar.gz |
distro: recutils: Allow builds with glibc 2.16+.
* distro/base.scm (recutils): Apply. `diffutils-gets-undeclared.patch'.
-rw-r--r-- | distro/base.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/distro/base.scm b/distro/base.scm index eec05b6ee8..b0209256c3 100644 --- a/distro/base.scm +++ b/distro/base.scm @@ -908,7 +908,10 @@ internal in-memory representation.") (inputs `(("curl" ,(nixpkgs-derivation* "curl")) ("emacs" ,(nixpkgs-derivation* "emacs")) ("check" ,(nixpkgs-derivation* "check")) - ("bc" ,(nixpkgs-derivation* "bc")))) + ("bc" ,(nixpkgs-derivation* "bc")) + ("patch/gets" + ,(search-patch "diffutils-gets-undeclared.patch")))) + (arguments `(#:patches (list (assoc-ref %build-inputs "patch/gets")))) (description "GNU recutils, tools and libraries to access human-editable, text-based databases") (long-description |