Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 29 lines 561 B view raw
1{ 2 lib, 3 stdenv, 4 fetchurl, 5 curl, 6 libiconv, 7}: 8 9stdenv.mkDerivation rec { 10 pname = "html-xml-utils"; 11 version = "8.7"; 12 13 src = fetchurl { 14 url = "https://www.w3.org/Tools/HTML-XML-utils/${pname}-${version}.tar.gz"; 15 sha256 = "sha256-iIoxYxp6cDCLsvMz4HfQQW9Lt4MX+Gl/+0qVGH9ncwE="; 16 }; 17 18 buildInputs = [ 19 curl 20 libiconv 21 ]; 22 23 meta = with lib; { 24 description = "Utilities for manipulating HTML and XML files"; 25 homepage = "https://www.w3.org/Tools/HTML-XML-utils/"; 26 license = licenses.w3c; 27 platforms = platforms.all; 28 }; 29}