Author: simons
Date: Wed Sep  7 16:53:30 2011
New Revision: 29087
URL: https://svn.nixos.org/websvn/nix/?rev=29087&sc=1

Log:
wdiff: updated to version 1.0.0

Modified:
   nixpkgs/trunk/pkgs/tools/text/wdiff/default.nix

Modified: nixpkgs/trunk/pkgs/tools/text/wdiff/default.nix
==============================================================================
--- nixpkgs/trunk/pkgs/tools/text/wdiff/default.nix     Wed Sep  7 16:53:27 
2011        (r29086)
+++ nixpkgs/trunk/pkgs/tools/text/wdiff/default.nix     Wed Sep  7 16:53:30 
2011        (r29087)
@@ -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 = {
_______________________________________________
nix-commits mailing list
nix-comm...@cs.uu.nl
http://mail.cs.uu.nl/mailman/listinfo/nix-commits

Reply via email to