Bump soprano to 2.4.1

Add virtuoso backend. Another full KDE rebuild.

svn path=/nixpkgs/trunk/; revision=20933
This commit is contained in:
Yury G. Kudryashov 2010-04-03 17:34:26 +00:00
parent d22cb2fdb5
commit 39c24a4801
2 changed files with 8 additions and 8 deletions

View file

@ -23,7 +23,7 @@ pkgs.recurseIntoAttrs (rec {
soprano = import ./support/soprano {
inherit (pkgs) stdenv fetchurl lib cmake;
inherit (pkgs) qt4 cluceneCore redland;
inherit (pkgs) qt4 cluceneCore redland libiodbc;
};
qimageblitz = import ./support/qimageblitz {

View file

@ -1,20 +1,20 @@
{stdenv, fetchurl, lib, cmake, qt4, cluceneCore, redland}:
{stdenv, fetchurl, lib, cmake, qt4, cluceneCore, redland, libiodbc}:
stdenv.mkDerivation {
name = "soprano-2.4.0.1";
stdenv.mkDerivation rec {
name = "soprano-2.4.1";
src = fetchurl {
url = mirror://sourceforge/soprano/soprano-2.4.0.1.tar.bz2;
sha256 = "0124i92g3vky9wm8ripy3x4gnf1c4pz2hklisds9vld6ylj8gsa6";
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 ];
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 = [ lib.maintainers.sander ];
maintainers = with lib.maintainers; [ sander urkud ];
};
}