pkgs/tools/text/diffutils: fixed location of "info" and "man" directories

svn path=/nixpkgs/trunk/; revision=24602
This commit is contained in:
Peter Simons 2010-11-05 14:35:18 +00:00
parent c13e0307b6
commit ceb2468657

View File

@ -2,17 +2,24 @@
stdenv.mkDerivation {
name = "diffutils-2.8.1";
src = fetchurl {
url = mirror://gnu/diffutils/diffutils-2.8.1.tar.gz;
md5 = "71f9c5ae19b60608f6c7f162da86a428";
};
preConfigure = ''
configureFlags="--infodir=$out/share/info --mandir=$out/share/man"
'';
/* If no explicit coreutils is given, use the one from stdenv. */
buildInputs = [coreutils];
meta = {
homepage = http://www.gnu.org/software/diffutils/diffutils.html;
description = "Commands for showing the differences between files (diff, cmp, etc.)";
platforms = stdenv.lib.platforms.all;
maintainers = [ stdenv.lib.maintainers.simons ];
};
}