about summary refs log tree commit diff
path: root/pkgs/tools/text/wdiff
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2010-05-10 14:30:44 +0000
committerLudovic Courtès <ludo@gnu.org>2010-05-10 14:30:44 +0000
commit340f826442c846389d3e3ddce689204db1cce864 (patch)
tree75110dfcedc57df40f0ebaa70f997fbceef2fa62 /pkgs/tools/text/wdiff
parent714937bfa3453e4e855fee12d1aa0522cbb0646f (diff)
GNU Wdiff 0.6.1.
svn path=/nixpkgs/trunk/; revision=21708
Diffstat (limited to 'pkgs/tools/text/wdiff')
-rw-r--r--pkgs/tools/text/wdiff/default.nix14
1 files changed, 8 insertions, 6 deletions
diff --git a/pkgs/tools/text/wdiff/default.nix b/pkgs/tools/text/wdiff/default.nix
index da1ff92add339..fd3d4f9476920 100644
--- a/pkgs/tools/text/wdiff/default.nix
+++ b/pkgs/tools/text/wdiff/default.nix
@@ -1,18 +1,20 @@
 { stdenv, fetchurl }:
 
 stdenv.mkDerivation rec {
-  name = "wdiff-0.5.95";
+  name = "wdiff-0.6.1";
   
   src = fetchurl {
     url = "http://alpha.gnu.org/gnu/wdiff/${name}.tar.gz";
-    sha256 = "1rha2x8b6i0gk9s2gp61x4acakkx5q9ar1k54x9grmgr6w7fzd97";
+    sha256 = "0cgmx9k8sj0l79kp4m2lmn4ifx55ah68q4qk7xsanx69m1061ghf";
   };
-  
+
+  doCheck = true;
+
   meta = {
     homepage = http://www.gnu.org/software/wdiff/;
-    description = "A front-end to diff for comparing files on a word per word basis";
-    license = "GPLv3";
-    maintainers = [ stdenv.lib.maintainers.eelco ];
+    description = "GNU wdiff, comparing files on a word by word basis";
+    license = "GPLv3+";
+    maintainers = [ stdenv.lib.maintainers.eelco stdenv.lib.maintainers.ludo ];
     platforms = stdenv.lib.platforms.all;
   };
 }