summary refs log tree commit diff
path: root/pkgs/development/libraries/attica/default.nix
blob: 9a5002551cb8be42129a0ce2462989b15a6a156b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, fetchurl, cmake, qt4 }:

stdenv.mkDerivation rec {
  name = "attica-0.4.0";
  
  src = fetchurl {
    url = "mirror://kde/stable/attica/${name}.tar.bz2";
    sha256 = "172d1z97aw9iscq6wh23i31s4hgq7mmhr3mk4xgifqv0hjcmzyhq";
  };
  
  buildInputs = [ qt4 ];
  nativeBuildInputs = [ cmake ];
  
  meta = with stdenv.lib; {
    description = "A library to access Open Collaboration Service providers";
    license = "LGPL";
    maintainers = [ maintainers.sander maintainers.urkud ];
    inherit (qt4.meta) platforms;
  };
}