Files
nixpkgs/pkgs/tools/text/xml/html-xml-utils/default.nix
T

21 lines
536 B
Nix
Raw Normal View History

2017-07-17 21:46:02 +03:00
{ stdenv, fetchurl, curl, libiconv }:
2013-10-17 14:11:15 -04:00
stdenv.mkDerivation rec {
2017-07-17 21:46:02 +03:00
name = "html-xml-utils-${version}";
2018-04-30 15:01:58 -07:00
version = "7.7";
2013-10-17 14:11:15 -04:00
src = fetchurl {
2018-06-28 20:43:35 +02:00
url = "https://www.w3.org/Tools/HTML-XML-utils/${name}.tar.gz";
2018-04-30 15:01:58 -07:00
sha256 = "1vwqp5q276j8di9zql3kygf31z2frp2c59yjqlrvvwcvccvkcdwr";
2013-10-17 14:11:15 -04:00
};
2017-07-17 21:46:02 +03:00
buildInputs = [curl libiconv];
meta = with stdenv.lib; {
2013-10-17 14:11:15 -04:00
description = "Utilities for manipulating HTML and XML files";
homepage = http://www.w3.org/Tools/HTML-XML-utils/;
2017-07-17 21:46:02 +03:00
license = licenses.w3c;
platforms = platforms.all;
2013-10-17 14:11:15 -04:00
};
}