mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Bump soprano to 2.4.1
Add virtuoso backend. Another full KDE rebuild. svn path=/nixpkgs/trunk/; revision=20933
This commit is contained in:
parent
d22cb2fdb5
commit
39c24a4801
2 changed files with 8 additions and 8 deletions
|
@ -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 {
|
||||
|
|
|
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue