2011-07-21 23:54:40 +02:00
|
|
|
{ stdenv, fetchurl, cmake, qt4 }:
|
2011-07-07 22:47:38 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-05-25 10:41:57 +02:00
|
|
|
name = "attica-0.4.1";
|
2011-07-21 23:54:40 +02:00
|
|
|
|
2011-07-07 22:47:38 +02:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://kde/stable/attica/${name}.tar.bz2";
|
2013-05-25 10:41:57 +02:00
|
|
|
sha256 = "1rnd861vy6waf25b1ilsr3rwb06dmmlnd8zq3l8y6r0lq5i2bl9n";
|
2011-07-07 22:47:38 +02:00
|
|
|
};
|
2011-07-21 23:54:40 +02:00
|
|
|
|
2012-01-06 01:55:48 +01:00
|
|
|
buildInputs = [ qt4 ];
|
2012-12-28 19:20:09 +01:00
|
|
|
nativeBuildInputs = [ cmake ];
|
2011-07-21 23:54:40 +02:00
|
|
|
|
2011-07-07 22:47:38 +02:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A library to access Open Collaboration Service providers";
|
|
|
|
license = "LGPL";
|
2013-05-25 10:41:57 +02:00
|
|
|
maintainers = [ maintainers.sander maintainers.urkud maintainers.phreedom ];
|
2012-01-06 01:55:48 +01:00
|
|
|
inherit (qt4.meta) platforms;
|
2011-07-07 22:47:38 +02:00
|
|
|
};
|
|
|
|
}
|