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