nixpkgs/pkgs/tools/text/diffutils/default.nix
Lancelot SIX c4b77c0f7c Revert "diffutils: 3.3 -> 3.4"
This reverts commit 99f242bd00.
It will go into staging before getting into master.
2016-08-10 14:52:20 +02:00

22 lines
607 B
Nix

{ stdenv, fetchurl, xz, 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 = [ 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;
};
}