2010-05-01 00:41:40 -07:00
|
|
|
{ stdenv, fetchurl, libxml2, openssl, readline, gawk }:
|
|
|
|
|
2010-04-03 10:34:14 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2013-09-17 11:28:26 -07:00
|
|
|
name = "virtuoso-opensource-7.0.0";
|
2010-04-03 10:34:14 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2011-09-05 14:02:21 -07:00
|
|
|
url = "mirror://sourceforge/virtuoso/${name}.tar.gz";
|
2013-09-17 11:28:26 -07:00
|
|
|
sha256 = "1z0jdzayv45y57jj8kii6csqfjhswcs8s2krqqfhab54xy6gynbl";
|
2010-04-03 10:34:14 -07:00
|
|
|
};
|
|
|
|
|
2010-08-06 03:34:34 -07:00
|
|
|
buildInputs = [ libxml2 openssl readline gawk ];
|
2010-04-03 10:34:14 -07:00
|
|
|
|
2011-09-05 14:02:21 -07:00
|
|
|
CPP = "${stdenv.gcc}/bin/gcc -E";
|
2010-04-03 10:34:14 -07:00
|
|
|
|
2011-09-05 14:02:21 -07:00
|
|
|
configureFlags = "
|
2010-04-03 10:34:14 -07:00
|
|
|
--enable-shared --disable-all-vads --with-readline=${readline}
|
|
|
|
--disable-hslookup --disable-wbxml2 --without-iodbc
|
|
|
|
--enable-openssl=${openssl}
|
|
|
|
";
|
|
|
|
|
|
|
|
postInstall=''
|
2011-09-27 08:40:45 -07:00
|
|
|
echo Moving documentation
|
2011-08-10 02:43:20 -07:00
|
|
|
mkdir -pv $out/share/doc
|
|
|
|
mv -v $out/share/virtuoso/doc $out/share/doc/${name}
|
2011-12-14 06:09:53 -08:00
|
|
|
echo Removing jars and empty directories
|
2010-04-03 10:34:14 -07:00
|
|
|
find $out -name "*.a" -delete -o -name "*.jar" -delete -o -type d -empty -delete
|
|
|
|
'';
|
2010-05-01 00:07:31 -07:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2011-09-27 08:40:45 -07:00
|
|
|
description = "SQL/RDF database used by, e.g., KDE-nepomuk";
|
2010-05-01 00:07:31 -07:00
|
|
|
homepage = http://virtuoso.openlinksw.com/dataspace/dav/wiki/Main/;
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = [ maintainers.urkud ];
|
|
|
|
};
|
2010-04-03 10:34:14 -07:00
|
|
|
}
|