librdf_raptor2: use curl HTTP backend

libxml2 2.13 has disabled HTTP support by default.
Switching to curl since it is the default HTTP implementation in raptor.
This commit is contained in:
Jan Tojnar
2024-07-18 20:35:20 +02:00
parent 693bc46d16
commit e7e6af675c
@@ -1,6 +1,7 @@
{ lib
, stdenv
, libxml2
, curl
, libxslt
, pkg-config
, cmake
@@ -45,7 +46,11 @@ stdenv.mkDerivation rec {
];
nativeBuildInputs = [ pkg-config cmake perl bison flex ];
buildInputs = [ libxml2 libxslt ];
buildInputs = [
curl
libxml2
libxslt
];
meta = {
description = "RDF Parser Toolkit";