8bff33a4ff
See http://lists.gnu.org/archive/html/info-gnu/2016-08/msg00004.html for release announcement.
21 lines
607 B
Nix
21 lines
607 B
Nix
{ stdenv, fetchurl, xz, coreutils ? null }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "diffutils-3.4";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnu/diffutils/${name}.tar.xz";
|
|
sha256 = "1qlw328qpbss07zrb14ls0rhnhbvxrnssgbmrxxj2gdcy8jw0lyv";
|
|
};
|
|
|
|
outputs = [ "out" "info" ];
|
|
|
|
/* If no explicit coreutils is given, use the one from stdenv. */
|
|
nativeBuildInputs = [ xz.bin 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.unix;
|
|
};
|
|
}
|