summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/archivers/sharutils
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2010-02-22 09:52:39 +0000
committerLudovic Courtès <ludo@gnu.org>2010-02-22 09:52:39 +0000
commit913503155a2d880cc43507a68e0d55df6062013b (patch)
treef353673cc7b6ca951c2ca8aed66d477c43850235 /pkgs/tools/archivers/sharutils
parent7abc6a6b7d4f73c7f44d263ba36d9207da54e744 (diff)
GNU Sharutils: Pass `gettext'; run the test suite.
svn path=/nixpkgs/trunk/; revision=20164
Diffstat (limited to 'pkgs/tools/archivers/sharutils')
-rw-r--r--pkgs/tools/archivers/sharutils/default.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/pkgs/tools/archivers/sharutils/default.nix b/pkgs/tools/archivers/sharutils/default.nix
index 72265b4ae1b9..49cfc233c351 100644
--- a/pkgs/tools/archivers/sharutils/default.nix
+++ b/pkgs/tools/archivers/sharutils/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl }:
+{ stdenv, fetchurl, gettext }:
stdenv.mkDerivation rec {
name = "sharutils-4.8";
@@ -8,6 +8,11 @@ stdenv.mkDerivation rec {
sha256 = "19nlbzwlr93f7bam51rsqyj3z3sd65x32zhwxc9dgdgzcbggncnm";
};
+ # GNU Gettext is needed on non-GNU platforms.
+ buildInputs = [ gettext ];
+
+ doCheck = true;
+
meta = {
description = "GNU Sharutils, tools for remote synchronization and `shell archives'";