From 4a1b8d558c9f5c17b9177cb64ede782606d0a68f Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Wed, 30 Jun 2010 04:39:02 +0000 Subject: [PATCH] Putting back accidentally removed export of LFDLAGS svn path=/nixpkgs/trunk/; revision=22429 --- pkgs/development/libraries/redland/1.0.10.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/libraries/redland/1.0.10.nix b/pkgs/development/libraries/redland/1.0.10.nix index 959581d407e5..8d28ed9cd9fd 100644 --- a/pkgs/development/libraries/redland/1.0.10.nix +++ b/pkgs/development/libraries/redland/1.0.10.nix @@ -18,6 +18,10 @@ stdenv.mkDerivation rec { librdf_raptor librdf_rasqal ]; + preConfigure = '' + export NIX_LDFLAGS="$NIX_LDFLAGS -lrasqal -lraptor" + ''; + configureFlags = [ "--with-threads" ] ++ stdenv.lib.optional (bdb != null) "--with-bdb=${bdb}";