at 18.03-beta 26 lines 793 B view raw
1{ stdenv, fetchurl, cmake, qt4, clucene_core, librdf_redland, libiodbc 2, pkgconfig }: 3 4stdenv.mkDerivation rec { 5 name = "soprano-2.9.4"; 6 7 src = fetchurl { 8 url = "mirror://sourceforge/soprano/${name}.tar.bz2"; 9 sha256 = "1rg0x7yg0a1cbnxz7kqk52580wla8jbnj4d4r3j7l7g7ajyny1k4"; 10 }; 11 12 patches = [ ./find-virtuoso.patch ]; 13 14 # We disable the Java backend, since we do not need them and they make the closure size much bigger 15 buildInputs = [ qt4 clucene_core librdf_redland libiodbc ]; 16 17 nativeBuildInputs = [ cmake pkgconfig ]; 18 19 meta = { 20 homepage = http://soprano.sourceforge.net/; 21 description = "An object-oriented C++/Qt4 framework for RDF data"; 22 license = "LGPL"; 23 maintainers = with stdenv.lib.maintainers; [ sander ]; 24 inherit (qt4.meta) platforms; 25 }; 26}