summary refs log blame commit diff
path: root/pkgs/applications/kde/akonadi-notes.nix
blob: 6db7e00be9b0ce23ed60c71a7c3c33d1c0725a94 (plain) (tree)
1
2
3
4
5
6
7
8






                                                          
                          









                                                        
{
  mkDerivation, lib, kdepimTeam,
  extra-cmake-modules, kdoctools,
  akonadi, kcompletion, ki18n, kitemmodels, kmime, kxmlgui
}:

mkDerivation {
  pname = "akonadi-notes";
  meta = {
    license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
    maintainers = kdepimTeam;
  };
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  buildInputs = [
    akonadi kcompletion ki18n kitemmodels kmime kxmlgui
  ];
  outputs = [ "out" "dev" ];
}