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

stdenv.mkDerivation rec {
  name = "html-xml-utils-6.9";

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

    sha256 = "1cpshwz60h7xsw1rvv84jl4bn9zjqii9hb8zvwm7a0fahkf03x4w";
  };

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