From 8cd1b893cf5f8f4211378ec6222ce74adf20745e Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 6 Feb 2008 13:18:50 +0000 Subject: * coreutils-6.10, findutils-4.2.32. * Added some meta attributes. svn path=/nixpkgs/branches/stdenv-updates/; revision=10511 --- pkgs/tools/text/diffutils/default.nix | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'pkgs/tools/text/diffutils') diff --git a/pkgs/tools/text/diffutils/default.nix b/pkgs/tools/text/diffutils/default.nix index 3c0d5479ec5..44b7715607c 100644 --- a/pkgs/tools/text/diffutils/default.nix +++ b/pkgs/tools/text/diffutils/default.nix @@ -2,10 +2,17 @@ stdenv.mkDerivation { name = "diffutils-2.8.1"; + src = fetchurl { url = mirror://gnu/diffutils/diffutils-2.8.1.tar.gz; md5 = "71f9c5ae19b60608f6c7f162da86a428"; }; + /* If no explicit coreutils is given, use the one from stdenv. */ buildInputs = [coreutils]; + + meta = { + homepage = http://www.gnu.org/software/diffutils/diffutils.html; + description = "Commands for showing the differences between files (diff, cmp, etc.)"; + }; } -- cgit 1.4.1