2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, libxml2, openssl, readline, gawk }:
|
2010-05-01 08:41:40 +01:00
|
|
|
|
2010-04-03 18:34:14 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2018-03-21 11:44:16 +00:00
|
|
|
name = "virtuoso-opensource-7.2.4.2";
|
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";
|
2018-03-21 11:44:16 +00:00
|
|
|
sha256 = "12dqam1gc1v93l0bj0vlpvjqppki6y1hqrlznywxnw0rrz9pb002";
|
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
|
|
|
|
2018-07-25 22:44:21 +01:00
|
|
|
configureFlags = [
|
|
|
|
"--enable-shared" "--disable-all-vads" "--with-readline=${readline.dev}"
|
|
|
|
"--disable-hslookup" "--disable-wbxml2" "--without-iodbc"
|
|
|
|
"--enable-openssl=${openssl.dev}"
|
|
|
|
];
|
2010-04-03 18:34:14 +01:00
|
|
|
|
|
|
|
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
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2011-09-27 16:40:45 +01:00
|
|
|
description = "SQL/RDF database used by, e.g., KDE-nepomuk";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://virtuoso.openlinksw.com/dataspace/dav/wiki/Main/";
|
2016-04-06 17:16:23 +01:00
|
|
|
#configure: The current version [...] can only be built on 64bit platforms
|
2016-09-01 18:39:33 +01:00
|
|
|
platforms = [ "x86_64-linux" ];
|
2018-11-14 22:14:09 +00:00
|
|
|
license = licenses.gpl2;
|
2010-05-01 08:07:31 +01:00
|
|
|
};
|
2010-04-03 18:34:14 +01:00
|
|
|
}
|