1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

virtuoso7: disable i686-linux, as it's unsupported

This commit is contained in:
Vladimír Čunát 2014-08-14 18:16:48 +02:00
parent 0ad11df7cd
commit 78118328b5

View file

@ -25,11 +25,12 @@ stdenv.mkDerivation rec {
echo Removing jars and empty directories echo Removing jars and empty directories
find $out -name "*.a" -delete -o -name "*.jar" -delete -o -type d -empty -delete find $out -name "*.a" -delete -o -name "*.jar" -delete -o -type d -empty -delete
''; '';
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "SQL/RDF database used by, e.g., KDE-nepomuk"; description = "SQL/RDF database used by, e.g., KDE-nepomuk";
homepage = http://virtuoso.openlinksw.com/dataspace/dav/wiki/Main/; homepage = http://virtuoso.openlinksw.com/dataspace/dav/wiki/Main/;
platforms = platforms.all; #configure: The current version [...] can only be build on 64bit platforms
platforms = [ "x86_64-linux" "x86_64-darwin" ];
maintainers = [ maintainers.urkud ]; maintainers = [ maintainers.urkud ];
}; };
} }