summary refs log blame commit diff
path: root/pkgs/applications/kde/akregator.nix
blob: 9cb23ad35ac5f03e86b59e3fb2b2abd310d216dd (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                                                             
                      
          

                                                 















                                                                              
{
  mkDerivation, lib, kdepimTeam,
  extra-cmake-modules, kdoctools,
  qtwebengine,
  grantlee,
  kcmutils, kcrash, kiconthemes, knotifyconfig, kparts, ktexteditor,
  kwindowsystem,
  akonadi, akonadi-mime, grantleetheme, kontactinterface, libkdepim, libkleo,
  messagelib, syndication
}:

mkDerivation {
  pname = "akregator";
  meta = {
    homepage = "https://apps.kde.org/akregator/";
    description = "KDE feed reader";
    license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
    maintainers = kdepimTeam;
  };
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  buildInputs = [
    qtwebengine

    grantlee

    kcmutils kcrash kiconthemes knotifyconfig kparts ktexteditor kwindowsystem

    akonadi akonadi-mime grantleetheme kontactinterface libkdepim libkleo
    messagelib syndication
  ];
  outputs = [ "out" "dev" ];
}