1{ stdenv, fetchurl, pkgconfig, libxml2 }:
2
3stdenv.mkDerivation rec {
4 name = "xml2-0.5";
5
6 src = fetchurl {
7 url = https://web.archive.org/web/20160427221603/http://download.ofb.net/gale/xml2-0.5.tar.gz;
8 sha256 = "01cps980m99y99cnmvydihga9zh3pvdsqag2fi1n6k2x7rfkl873";
9 };
10
11 nativeBuildInputs = [ pkgconfig ];
12 buildInputs = [ libxml2 ];
13
14 meta = with stdenv.lib; {
15 homepage = https://web.archive.org/web/20160515005047/http://dan.egnor.name:80/xml2;
16 description = "Tools for command line processing of XML, HTML, and CSV";
17 license = licenses.gpl2Plus;
18 platforms = platforms.all;
19 maintainers = [ maintainers.rycee ];
20 };
21}