From e7e6af675cef16a6e1ecad97ca43a63e0b62df1c Mon Sep 17 00:00:00 2001 From: Jan Tojnar Date: Thu, 18 Jul 2024 20:34:46 +0200 Subject: [PATCH] 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. --- pkgs/development/libraries/librdf/raptor2.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/librdf/raptor2.nix b/pkgs/development/libraries/librdf/raptor2.nix index 424022b7ab4b..a747ad8eb8de 100644 --- a/pkgs/development/libraries/librdf/raptor2.nix +++ b/pkgs/development/libraries/librdf/raptor2.nix @@ -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";