about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2014-01-27 15:54:39 +0100
committerEelco Dolstra <eelco.dolstra@logicblox.com>2014-01-27 17:58:26 +0100
commit150ec8f79e697845ae08973b0e20b395a65fa376 (patch)
tree945157aba261f49e155ef7b05ca27a994833cc06 /pkgs/tools
parent2e70c14061786b6779d16cddde91d34e900c5163 (diff)
downloadnixlib-150ec8f79e697845ae08973b0e20b395a65fa376.tar
nixlib-150ec8f79e697845ae08973b0e20b395a65fa376.tar.gz
nixlib-150ec8f79e697845ae08973b0e20b395a65fa376.tar.bz2
nixlib-150ec8f79e697845ae08973b0e20b395a65fa376.tar.lz
nixlib-150ec8f79e697845ae08973b0e20b395a65fa376.tar.xz
nixlib-150ec8f79e697845ae08973b0e20b395a65fa376.tar.zst
nixlib-150ec8f79e697845ae08973b0e20b395a65fa376.zip
wdiff: Update to 1.2.1
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/text/wdiff/default.nix11
1 files changed, 4 insertions, 7 deletions
diff --git a/pkgs/tools/text/wdiff/default.nix b/pkgs/tools/text/wdiff/default.nix
index 70b9bf69e290..3981f67aefb9 100644
--- a/pkgs/tools/text/wdiff/default.nix
+++ b/pkgs/tools/text/wdiff/default.nix
@@ -1,17 +1,14 @@
-{ stdenv, fetchurl, which, screen }:
+{ stdenv, fetchurl, texinfo }:
 
 stdenv.mkDerivation rec {
-  name = "wdiff-1.1.2";
+  name = "wdiff-1.2.1";
 
   src = fetchurl {
     url = "mirror://gnu/wdiff/${name}.tar.gz";
-    sha256 = "0q78y5awvjjmsvizqilbpwany62shlmlq2ayxkjbygmdafpk1k8j";
+    sha256 = "1gb5hpiyikada9bwz63q3g96zs383iskiir0xsqynqnvq1vd4n41";
   };
 
-  # Required for the compile-time for the test suite.
-  buildInputs = [ which screen ];
-
-  doCheck = true;
+  buildInputs = [ texinfo ];
 
   meta = {
     homepage = http://www.gnu.org/software/wdiff/;