nixpkgs/pkgs/tools/text/diffutils/default.nix
2014-08-30 08:27:43 +02:00

21 lines
553 B
Nix

{ stdenv, fetchurl, coreutils ? null }:
stdenv.mkDerivation rec {
name = "diffutils-3.3";
src = fetchurl {
url = "mirror://gnu/diffutils/${name}.tar.xz";
sha256 = "1761vymxbp4wb5rzjvabhdkskk95pghnn67464byvzb5mfl8jpm2";
};
outputs = [ "out" "info" ];
/* If no explicit coreutils is given, use the one from stdenv. */
nativeBuildInputs = [ coreutils ];
meta = {
homepage = http://www.gnu.org/software/diffutils/diffutils.html;
description = "Commands for showing the differences between files (diff, cmp, etc.)";
};
}