summary refs log tree commit diff
path: root/pkgs/tools/text
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2011-09-07 16:53:30 +0000
committerPeter Simons <simons@cryp.to>2011-09-07 16:53:30 +0000
commit2482d4ba22ff14912e4861c2bdac436fae1c8ffd (patch)
tree460f1202b0a1a45c9e2de75a6aacca1efb7c138f /pkgs/tools/text
parent4fba6f2bf32dd3f5834ef3cf738d6840f8fbae4c (diff)
wdiff: updated to version 1.0.0
svn path=/nixpkgs/trunk/; revision=29087
Diffstat (limited to 'pkgs/tools/text')
-rw-r--r--pkgs/tools/text/wdiff/default.nix14
1 files changed, 10 insertions, 4 deletions
diff --git a/pkgs/tools/text/wdiff/default.nix b/pkgs/tools/text/wdiff/default.nix
index 1b51e19c427cb..a517991d99e48 100644
--- a/pkgs/tools/text/wdiff/default.nix
+++ b/pkgs/tools/text/wdiff/default.nix
@@ -1,13 +1,19 @@
-{ stdenv, fetchurl }:
+{ stdenv, fetchurl, which, screen }:
 
-stdenv.mkDerivation rec {
-  name = "wdiff-0.6.5";
+let
+  name = "wdiff-1.0.0";
+in
+stdenv.mkDerivation {
+  inherit name;
 
   src = fetchurl {
     url = "mirror://gnu/wdiff/${name}.tar.gz";
-    sha256 = "1fij74hni4mi1zipf5is8kr1i9cssyyq5kqqhcxi0j7mynb5d1sm";
+    sha256 = "00p0yww8dfszzhbwkfl4v5l9r55v9qznx3p089l2m2drjb1ahp3v";
   };
 
+  # Required for the compile-time for the test suite.
+  buildInputs = [ which screen ];
+
   doCheck = true;
 
   meta = {