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