nixpkgs/pkgs/desktops/kde-4.3/support/soprano/default.nix
Sander van der Burg 379a499dca Updated all KDE support packages required for KDE 4.3
svn path=/nixpkgs/trunk/; revision=16988
2009-09-08 14:38:27 +00:00

21 lines
641 B
Nix

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