2010-02-10 16:06:50 +01:00
|
|
|
{stdenv, fetchurl, cmake, qt4}:
|
|
|
|
|
2010-07-03 11:18:55 +02:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "attica-0.1.4";
|
2010-02-10 16:06:50 +01:00
|
|
|
src = fetchurl {
|
2010-07-03 11:18:55 +02:00
|
|
|
url = "mirror://kde/stable/attica/${name}.tar.bz2";
|
|
|
|
sha256 = "0frarnrnbli3f5ji90swgw05g88w1f5777ais345wc8lkvqg9ix1";
|
2010-02-10 16:06:50 +01:00
|
|
|
};
|
|
|
|
buildInputs = [ cmake qt4 ];
|
2010-07-03 11:18:55 +02:00
|
|
|
meta = with stdenv.lib; {
|
2010-02-10 16:06:50 +01:00
|
|
|
description = "A library to access Open Collaboration Service providers";
|
|
|
|
license = "LGPL";
|
2010-07-03 11:18:55 +02:00
|
|
|
maintainers = [ maintainers.sander maintainers.urkud ];
|
|
|
|
platforms = qt4.meta.platforms;
|
2010-02-10 16:06:50 +01:00
|
|
|
};
|
2010-07-03 11:18:55 +02:00
|
|
|
}
|