nixpkgs/pkgs/tools/text/wdiff/default.nix
Ludovic Courtès e15f102b5f GNU wdiff 1.0.1.
svn path=/nixpkgs/trunk/; revision=29317
2011-09-17 10:09:39 +00:00

27 lines
644 B
Nix

{ stdenv, fetchurl, which, screen }:
let
name = "wdiff-1.0.1";
in
stdenv.mkDerivation {
inherit name;
src = fetchurl {
url = "mirror://gnu/wdiff/${name}.tar.gz";
sha256 = "1jyg8vmdlazpcwii8a1ddbc0sxcklp9cvj5y0x9zqaybvwzg9r4l";
};
# Required for the compile-time for the test suite.
buildInputs = [ which screen ];
doCheck = true;
meta = {
homepage = http://www.gnu.org/software/wdiff/;
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;
};
}