mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-27 02:34:53 +00:00
35 lines
661 B
Nix
35 lines
661 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
curl,
|
|
gperf,
|
|
libiconv,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "html-xml-utils";
|
|
version = "8.7";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.w3.org/Tools/HTML-XML-utils/html-xml-utils-${finalAttrs.version}.tar.gz";
|
|
sha256 = "sha256-iIoxYxp6cDCLsvMz4HfQQW9Lt4MX+Gl/+0qVGH9ncwE=";
|
|
};
|
|
|
|
patches = [ ./gcc15.patch ];
|
|
|
|
nativeBuildInputs = [ gperf ];
|
|
|
|
buildInputs = [
|
|
curl
|
|
libiconv
|
|
];
|
|
|
|
meta = {
|
|
description = "Utilities for manipulating HTML and XML files";
|
|
homepage = "https://www.w3.org/Tools/HTML-XML-utils/";
|
|
license = lib.licenses.w3c;
|
|
platforms = lib.platforms.all;
|
|
};
|
|
})
|