Upgrade attica and soprano

svn path=/nixpkgs/trunk/; revision=22445
This commit is contained in:
Yury G. Kudryashov 2010-07-03 09:18:55 +00:00
parent 41e58b3982
commit 04225887fa
2 changed files with 11 additions and 9 deletions

View file

@ -1,15 +1,16 @@
{stdenv, fetchurl, cmake, qt4}: {stdenv, fetchurl, cmake, qt4}:
stdenv.mkDerivation { stdenv.mkDerivation rec {
name = "attica-0.1.2"; name = "attica-0.1.4";
src = fetchurl { src = fetchurl {
url = mirror://kde/stable/attica/attica-0.1.2.tar.bz2; url = "mirror://kde/stable/attica/${name}.tar.bz2";
sha256 = "09k7ghphqzfdlnsj61396sgmyzjqz9l6a8703y29292yc4h7qmxh"; sha256 = "0frarnrnbli3f5ji90swgw05g88w1f5777ais345wc8lkvqg9ix1";
}; };
buildInputs = [ cmake qt4 ]; buildInputs = [ cmake qt4 ];
meta = { meta = with stdenv.lib; {
description = "A library to access Open Collaboration Service providers"; description = "A library to access Open Collaboration Service providers";
license = "LGPL"; license = "LGPL";
maintainers = [ stdenv.lib.maintainers.sander ]; maintainers = [ maintainers.sander maintainers.urkud ];
platforms = qt4.meta.platforms;
}; };
} }

View file

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