2011-07-21 23:54:40 +02:00
|
|
|
{ stdenv, fetchurl, cmake, qt4 }:
|
2011-07-07 22:47:38 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-07-12 15:31:01 +02:00
|
|
|
name = "attica-0.4.2";
|
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-07-12 15:31:01 +02:00
|
|
|
sha256 = "1y74gsyzi70dfr9d1f1b08k130rm3jaibsppg8dv5h3211vm771v";
|
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
|
|
|
};
|
|
|
|
}
|