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