nixpkgs/pkgs/desktops/kde-4.4/support/soprano/default.nix
Yury G. Kudryashov 39c24a4801 Bump soprano to 2.4.1
Add virtuoso backend. Another full KDE rebuild.

svn path=/nixpkgs/trunk/; revision=20933
2010-04-03 17:34:26 +00:00

21 lines
651 B
Nix

{stdenv, fetchurl, lib, cmake, qt4, cluceneCore, redland, libiodbc}:
stdenv.mkDerivation rec {
name = "soprano-2.4.1";
src = fetchurl {
url = "mirror://sf/soprano/${name}.tar.bz2";
sha256 = "1ghwjbcrbwhq0in61a47iaxcja50r9axsg9cv97x2myprrqa43bj";
};
# We disable the Java backends, since we do not need them and they make the closure size much bigger
buildInputs = [ cmake qt4 cluceneCore redland libiodbc ];
meta = {
homepage = http://soprano.sourceforge.net/;
description = "An object-oriented C++/Qt4 framework for RDF data";
license = "LGPL";
maintainers = with lib.maintainers; [ sander urkud ];
};
}