From d5a21a68e5862ff3604f5b657bb4031ce76129e6 Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Tue, 8 Nov 2011 10:07:03 +0000 Subject: [PATCH] Fix raptor build - curl dropped curl/types.h svn path=/nixpkgs/trunk/; revision=30315 --- pkgs/development/libraries/librdf/raptor.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/libraries/librdf/raptor.nix b/pkgs/development/libraries/librdf/raptor.nix index 738369e796a..dd19d3f179f 100644 --- a/pkgs/development/libraries/librdf/raptor.nix +++ b/pkgs/development/libraries/librdf/raptor.nix @@ -10,6 +10,10 @@ stdenv.mkDerivation rec { buildInputs = [ libxml2 curl ]; + preBuild = '' + sed -e '/curl\/types/d' -i src/*.c src/*.h + ''; + meta = { description = "The RDF Parser Toolkit"; homepage = "http://librdf.org/raptor";