59b7072038
svn path=/nixpkgs/trunk/; revision=28455
34 lines
940 B
Nix
34 lines
940 B
Nix
{ stdenv, fetchurl, libxml2, openssl, readline, gawk }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "virtuoso-opensource-6.1.3";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sf/virtuoso/${name}.tar.gz";
|
|
sha256 = "0rj629qjsibpllazngbhzhsh90x6nidpn292qz1xdvirwvb2h3s2";
|
|
};
|
|
|
|
buildInputs = [ libxml2 openssl readline gawk ];
|
|
|
|
CPP="${stdenv.gcc}/bin/gcc -E";
|
|
|
|
configureFlags="
|
|
--enable-shared --disable-all-vads --with-readline=${readline}
|
|
--disable-hslookup --disable-wbxml2 --without-iodbc
|
|
--enable-openssl=${openssl}
|
|
";
|
|
|
|
postInstall=''
|
|
echo Move documentation
|
|
mkdir -pv $out/share/doc
|
|
mv -v $out/share/virtuoso/doc $out/share/doc/${name}
|
|
find $out -name "*.a" -delete -o -name "*.jar" -delete -o -type d -empty -delete
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://virtuoso.openlinksw.com/dataspace/dav/wiki/Main/;
|
|
platforms = platforms.all;
|
|
maintainers = [ maintainers.urkud ];
|
|
};
|
|
}
|