lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 18.09-beta 22 lines 614 B view raw
1{ stdenv, fetchurl, libxml2, libxslt }: 2 3stdenv.mkDerivation rec { 4 name = "raptor2-2.0.15"; 5 6 src = fetchurl { 7 url = "http://download.librdf.org/source/${name}.tar.gz"; 8 sha256 = "ada7f0ba54787b33485d090d3d2680533520cd4426d2f7fb4782dd4a6a1480ed"; 9 }; 10 11 buildInputs = [ libxml2 libxslt ]; 12 13 postInstall = "rm -rvf $out/share/gtk-doc"; 14 15 meta = { 16 description = "The RDF Parser Toolkit"; 17 homepage = http://librdf.org/raptor; 18 license = with stdenv.lib.licenses; [ lgpl21 asl20 ]; 19 maintainers = with stdenv.lib.maintainers; [ marcweber ]; 20 platforms = stdenv.lib.platforms.unix; 21 }; 22}