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