nixpkgs/pkgs/tools/text/diffutils/default.nix
2016-08-10 14:54:49 +02:00

22 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;
};
}