1 { lib, stdenv, fetchurl, libxml2, curl }:
3 stdenv.mkDerivation rec {
8 url = "http://download.librdf.org/source/raptor-${version}.tar.gz";
9 sha256 = "db3172d6f3c432623ed87d7d609161973d2f7098e3d2233d0702fbcc22cfd8ca";
12 buildInputs = [ libxml2 curl ];
15 sed -e '/curl\/types/d' -i src/*.c src/*.h
19 description = "RDF Parser Toolkit";
20 homepage = "https://librdf.org/raptor";
21 license = with lib.licenses; [ lgpl21 asl20 ];
22 maintainers = [ lib.maintainers.marcweber ];
23 platforms = lib.platforms.linux;