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