GNU Sharutils: Pass `gettext'; run the test suite.

svn path=/nixpkgs/trunk/; revision=20164

+7 -2
+6 -1
pkgs/tools/archivers/sharutils/default.nix
··· 1 - { stdenv, fetchurl }: 1 + { stdenv, fetchurl, gettext }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "sharutils-4.8"; ··· 7 7 url = "mirror://gnu/sharutils/${name}.tar.bz2"; 8 8 sha256 = "19nlbzwlr93f7bam51rsqyj3z3sd65x32zhwxc9dgdgzcbggncnm"; 9 9 }; 10 + 11 + # GNU Gettext is needed on non-GNU platforms. 12 + buildInputs = [ gettext ]; 13 + 14 + doCheck = true; 10 15 11 16 meta = { 12 17 description = "GNU Sharutils, tools for remote synchronization and `shell archives'";
+1 -1
pkgs/top-level/all-packages.nix
··· 1507 1507 }; 1508 1508 1509 1509 sharutils = import ../tools/archivers/sharutils { 1510 - inherit fetchurl stdenv; 1510 + inherit fetchurl stdenv gettext; 1511 1511 }; 1512 1512 1513 1513 shebangfix = import ../tools/misc/shebangfix {