2010-05-01 07:41:40 +00:00
|
|
|
{ stdenv, fetchurl, libxml2, openssl, readline, gawk }:
|
|
|
|
|
2010-04-03 17:34:14 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2018-03-21 11:44:16 +00:00
|
|
|
name = "virtuoso-opensource-7.2.4.2";
|
2010-04-03 17:34:14 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2011-09-05 21:02:21 +00:00
|
|
|
url = "mirror://sourceforge/virtuoso/${name}.tar.gz";
|
2018-03-21 11:44:16 +00:00
|
|
|
sha256 = "12dqam1gc1v93l0bj0vlpvjqppki6y1hqrlznywxnw0rrz9pb002";
|
2010-04-03 17:34:14 +00:00
|
|
|
};
|
|
|
|
|
2010-08-06 10:34:34 +00:00
|
|
|
buildInputs = [ libxml2 openssl readline gawk ];
|
2010-04-03 17:34:14 +00:00
|
|
|
|
2014-12-17 18:11:30 +00:00
|
|
|
CPP = "${stdenv.cc}/bin/gcc -E";
|
2010-04-03 17:34:14 +00:00
|
|
|
|
2018-07-25 21:44:21 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--enable-shared" "--disable-all-vads" "--with-readline=${readline.dev}"
|
|
|
|
"--disable-hslookup" "--disable-wbxml2" "--without-iodbc"
|
|
|
|
"--enable-openssl=${openssl.dev}"
|
|
|
|
];
|
2010-04-03 17:34:14 +00:00
|
|
|
|
|
|
|
postInstall=''
|
2011-09-27 15:40:45 +00:00
|
|
|
echo Moving documentation
|
2011-08-10 09:43:20 +00: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 17:34:14 +00:00
|
|
|
find $out -name "*.a" -delete -o -name "*.jar" -delete -o -type d -empty -delete
|
|
|
|
'';
|
2014-08-14 16:16:48 +00:00
|
|
|
|
2010-05-01 07:07:31 +00:00
|
|
|
meta = with stdenv.lib; {
|
2011-09-27 15:40:45 +00:00
|
|
|
description = "SQL/RDF database used by, e.g., KDE-nepomuk";
|
2010-05-01 07:07:31 +00:00
|
|
|
homepage = http://virtuoso.openlinksw.com/dataspace/dav/wiki/Main/;
|
2016-04-06 16:16:23 +00:00
|
|
|
#configure: The current version [...] can only be built on 64bit platforms
|
2016-09-01 17:39:33 +00:00
|
|
|
platforms = [ "x86_64-linux" ];
|
2018-11-14 22:14:09 +00:00
|
|
|
license = licenses.gpl2;
|
2010-05-01 07:07:31 +00:00
|
|
|
};
|
2010-04-03 17:34:14 +00:00
|
|
|
}
|