4dc86642ef
svn path=/nixpkgs/trunk/; revision=28649
26 lines
800 B
Nix
26 lines
800 B
Nix
{ stdenv, fetchurl, redland, pkgconfig, gmp, zlib, librdf_raptor2
|
|
, librdf_rasqal }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "redstore-0.5.2";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.aelius.com/njh/redstore/${name}.tar.gz";
|
|
sha256 = "fdbe499a7bbe8c8a756ecb738b83ea375e96af16a1d74245b75600d4d40adb7d";
|
|
};
|
|
|
|
buildInputs = [ gmp pkgconfig redland zlib librdf_raptor2 librdf_rasqal ];
|
|
|
|
preConfigure = ''
|
|
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${librdf_raptor2}/include/raptor2"
|
|
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${librdf_rasqal}/include/rasqal"
|
|
'';
|
|
|
|
meta = {
|
|
description = "An HTTP interface to Redland RDF store";
|
|
maintainers = [ stdenv.lib.maintainers.raskin ];
|
|
platforms = with stdenv.lib.platforms;
|
|
linux ++ freebsd ++ gnu;
|
|
};
|
|
}
|