forked from mirrors/nixpkgs
8ce6912b80
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/html-xml-utils/versions
21 lines
538 B
Nix
21 lines
538 B
Nix
{ stdenv, fetchurl, curl, libiconv }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "html-xml-utils";
|
|
version = "7.8";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.w3.org/Tools/HTML-XML-utils/${pname}-${version}.tar.gz";
|
|
sha256 = "0p8df3c6mw879vdi8l63kbdqylkf1is10b067mh9kipgfy91rd4s";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|