1{ stdenv, fetchurl }:
2
3stdenv.mkDerivation {
4 name = "libroxml-2.3.0";
5 src = fetchurl {
6 url = "http://download.libroxml.net/pool/v2.x/libroxml-2.3.0.tar.gz";
7 sha256 = "0y0vc9n4rfbimjp28nx4kdfzz08j5xymh5xjy84l9fhfac5z5a0x";
8 };
9 meta = with stdenv.lib; {
10 homepage = "http://www.libroxml.net/";
11 description = "This library is minimum, easy-to-use, C implementation for xml file parsing.";
12 license = licenses.lgpl3;
13 platforms = platforms.unix;
14 maintainers = with maintainers; [ mpickering ];
15 };
16}