57bccb3cb8
* treewide: http -> https sources This updates the source urls of all top-level packages from http to https where possible. * buildtorrent: fix url and tab -> spaces
21 lines
536 B
Nix
21 lines
536 B
Nix
{ stdenv, fetchurl, curl, libiconv }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "html-xml-utils-${version}";
|
|
version = "7.7";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.w3.org/Tools/HTML-XML-utils/${name}.tar.gz";
|
|
sha256 = "1vwqp5q276j8di9zql3kygf31z2frp2c59yjqlrvvwcvccvkcdwr";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|