summary refs log tree commit diff
path: root/pkgs/tools/text/xml/html-xml-utils/default.nix
blob: 987d192bafcd5251b6e0a1765293a74202c0314a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, fetchurl, curl, libiconv }:

stdenv.mkDerivation rec {
  name = "html-xml-utils-${version}";
  version = "7.6";

  src = fetchurl {
    url = "http://www.w3.org/Tools/HTML-XML-utils/${name}.tar.gz";
    sha256 = "0l97ps089byy62838wf2jwvvc465iw29z9r5kwmwcq7f3bn11y3m";
  };

  buildInputs = [curl libiconv];

  meta = with stdenv.lib; {
    description = "Utilities for manipulating HTML and XML files";
    homepage = http://www.w3.org/Tools/HTML-XML-utils/;
    license = licenses.w3c;
    platforms = platforms.all;
  };
}