45 lines
1.2 KiB
Nix
45 lines
1.2 KiB
Nix
|
x@{builderDefsPackage
|
||
|
, librdf_raptor, librdf_rasqal,
|
||
|
glib, libxml2, pcre, avahi,
|
||
|
readline, ncurses, expat,
|
||
|
zlib, pkgconfig, which,
|
||
|
db_dir ? "/var/lib/4store"
|
||
|
, ...}:
|
||
|
builderDefsPackage
|
||
|
(a :
|
||
|
let
|
||
|
s = import ./src-for-default.nix;
|
||
|
helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++
|
||
|
["db_dir"];
|
||
|
buildInputs = map (n: builtins.getAttr n x)
|
||
|
(builtins.attrNames (builtins.removeAttrs x helperArgNames));
|
||
|
in
|
||
|
rec {
|
||
|
src = a.fetchUrlFromSrcInfo s;
|
||
|
|
||
|
inherit (s) name;
|
||
|
inherit buildInputs;
|
||
|
|
||
|
/* doConfigure should be removed if not needed */
|
||
|
phaseNames = ["doFixConfigure" "doConfigure" "doMakeInstall"];
|
||
|
|
||
|
doFixConfigure = a.fullDepEntry ''
|
||
|
sed -e 's@#! */bin/bash@#! ${a.stdenv.shell}@' -i configure
|
||
|
find . -name Makefile -exec sed -e "s@/usr/local@$out@g" -i '{}' ';'
|
||
|
sed -e '/\/var\/lib\/4store/d' -i src/utilities/Makefile
|
||
|
|
||
|
sed -e 's@/var/lib/4store@${db_dir}@g' -i src/common/params.h src/utilities/*
|
||
|
'' ["minInit" "doUnpack"];
|
||
|
|
||
|
meta = {
|
||
|
description = "SparQL query server (RDF storage)";
|
||
|
maintainers = with a.lib.maintainers;
|
||
|
[
|
||
|
raskin
|
||
|
];
|
||
|
platforms = with a.lib.platforms;
|
||
|
linux;
|
||
|
};
|
||
|
}) x
|
||
|
|