From 2482d4ba22ff14912e4861c2bdac436fae1c8ffd Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 7 Sep 2011 16:53:30 +0000 Subject: [PATCH] wdiff: updated to version 1.0.0 svn path=/nixpkgs/trunk/; revision=29087 --- pkgs/tools/text/wdiff/default.nix | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/text/wdiff/default.nix b/pkgs/tools/text/wdiff/default.nix index 1b51e19c427..a517991d99e 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 = {