summary refs log tree commit diff
path: root/pkgs/servers/http/4store/default.nix
blob: 6e4be4a36fea91b8ae0ba359cdb49081bc4f85f2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{ stdenv, fetchFromGitHub, librdf_raptor
, librdf_rasqal, glib, libxml2, pcre
, avahi, readline, ncurses, expat, autoreconfHook
, zlib, pkgconfig, which, perl, libuuid
, gmp, mpfr
, db_dir ? "/var/lib/4store" }:


stdenv.mkDerivation rec {
  pname = "4store";
  version = "1.1.6";

  src = fetchFromGitHub {
    owner = "4store";
    repo = "4store";
    rev = "v${version}";
    sha256 = "1kzdfmwpzy64cgqlkcz5v4klwx99w0jk7afckyf7yqbqb4rydmpk";
  };

  patches = [ ./4store-1.1.6-glibc-2.26.patch ];

  nativeBuildInputs = [ autoreconfHook perl pkgconfig which ];

  buildInputs = [ librdf_raptor librdf_rasqal glib libxml2 pcre
    avahi readline ncurses expat zlib libuuid gmp mpfr ];

  # needed for ./autogen.sh
  prePatch = ''
    echo "${version}" > .version
  '';

  preConfigure =  ''
    sed -e 's@#! */bin/bash@#! ${stdenv.shell}@' -i configure
    find . -name Makefile -exec sed -e "s@/usr/local@$out@g" -i '{}' ';'

    rm src/utilities/4s-backend
    sed -e 's@/var/lib/4store@${db_dir}@g' -i configure.ac src/utilities/*
    sed -e '/FS_STORE_ROOT/d' -i src/utilities/Makefile*
  '';

  enableParallelBuilding = true;

  meta = with stdenv.lib; {
    description = "SparQL query server (RDF storage)";
    homepage = https://4store.danielknoell.de/;
    maintainers = with maintainers; [ raskin ];
    platforms = platforms.linux;
    broken = true; # since 2018-04-11
  };
}