mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
57bccb3cb8
* treewide: http -> https sources This updates the source urls of all top-level packages from http to https where possible. * buildtorrent: fix url and tab -> spaces
31 lines
929 B
Nix
31 lines
929 B
Nix
{ stdenv, fetchurl, redland, pkgconfig, gmp, zlib, librdf_raptor2
|
|
, librdf_rasqal }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "redstore-0.5.4";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.aelius.com/njh/redstore/${name}.tar.gz";
|
|
sha256 = "0hc1fjfbfvggl72zqx27v4wy84f5m7bp4dnwd8g41aw8lgynbgaq";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ gmp redland zlib librdf_raptor2 librdf_rasqal ];
|
|
|
|
preConfigure = ''
|
|
# Define _XOPEN_SOURCE to enable, e.g., getaddrinfo.
|
|
configureFlagsArray+=(
|
|
"CFLAGS=-D_XOPEN_SOURCE=600 -I${librdf_raptor2}/include/raptor2 -I${librdf_rasqal}/include/rasqal"
|
|
)
|
|
'';
|
|
|
|
meta = {
|
|
description = "An HTTP interface to Redland RDF store";
|
|
homepage = https://www.aelius.com/njh/redstore/;
|
|
maintainers = [ stdenv.lib.maintainers.raskin ];
|
|
platforms = with stdenv.lib.platforms;
|
|
linux ++ freebsd ++ gnu;
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
|
};
|
|
}
|