2004-09-18 17:06:06 +00:00
|
|
|
{stdenv, fetchurl, coreutils ? null}:
|
2004-03-19 16:53:04 +00:00
|
|
|
|
2004-03-29 17:23:01 +00:00
|
|
|
stdenv.mkDerivation {
|
2003-11-03 10:22:00 +00:00
|
|
|
name = "diffutils-2.8.1";
|
2008-02-06 13:18:50 +00:00
|
|
|
|
2003-11-03 10:22:00 +00:00
|
|
|
src = fetchurl {
|
2007-08-27 13:42:00 +00:00
|
|
|
url = mirror://gnu/diffutils/diffutils-2.8.1.tar.gz;
|
2003-11-03 10:22:00 +00:00
|
|
|
md5 = "71f9c5ae19b60608f6c7f162da86a428";
|
|
|
|
|
};
|
2008-02-06 13:18:50 +00:00
|
|
|
|
2004-09-18 17:06:06 +00:00
|
|
|
/* If no explicit coreutils is given, use the one from stdenv. */
|
2006-10-26 22:30:48 +00:00
|
|
|
buildInputs = [coreutils];
|
2008-02-06 13:18:50 +00:00
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
|
homepage = http://www.gnu.org/software/diffutils/diffutils.html;
|
|
|
|
|
description = "Commands for showing the differences between files (diff, cmp, etc.)";
|
|
|
|
|
};
|
2003-11-03 10:22:00 +00:00
|
|
|
}
|