summary refs log tree commit diff
path: root/pkgs/tools/text/diffutils
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2008-02-06 13:18:50 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2008-02-06 13:18:50 +0000
commit8cd1b893cf5f8f4211378ec6222ce74adf20745e (patch)
treed66e454acf9115160e3b3b7c948ac3b094332626 /pkgs/tools/text/diffutils
parentd3993b18fb8e84677c44ad1b06844564f54a207d (diff)
downloadnixpkgs-8cd1b893cf5f8f4211378ec6222ce74adf20745e.tar
nixpkgs-8cd1b893cf5f8f4211378ec6222ce74adf20745e.tar.gz
nixpkgs-8cd1b893cf5f8f4211378ec6222ce74adf20745e.tar.bz2
nixpkgs-8cd1b893cf5f8f4211378ec6222ce74adf20745e.tar.lz
nixpkgs-8cd1b893cf5f8f4211378ec6222ce74adf20745e.tar.xz
nixpkgs-8cd1b893cf5f8f4211378ec6222ce74adf20745e.tar.zst
nixpkgs-8cd1b893cf5f8f4211378ec6222ce74adf20745e.zip
* coreutils-6.10, findutils-4.2.32.
* Added some meta attributes.

svn path=/nixpkgs/branches/stdenv-updates/; revision=10511
Diffstat (limited to 'pkgs/tools/text/diffutils')
-rw-r--r--pkgs/tools/text/diffutils/default.nix7
1 files changed, 7 insertions, 0 deletions
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.)";
+  };
 }