Files
nixpkgs/pkgs/tools/text/diffutils/default.nix
T

19 lines
497 B
Nix
Raw Normal View History

{stdenv, fetchurl, coreutils ? null}:
2004-03-29 17:23:01 +00:00
stdenv.mkDerivation {
name = "diffutils-2.8.1";
2008-02-06 13:18:50 +00:00
src = fetchurl {
url = mirror://gnu/diffutils/diffutils-2.8.1.tar.gz;
md5 = "71f9c5ae19b60608f6c7f162da86a428";
};
2008-02-06 13:18:50 +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.)";
};
}