summary refs log tree commit diff
path: root/pkgs/applications/kde/akregator.nix
blob: 98d53bc808385ef71293ae42a41b3837dc3caffb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
  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 {
  name = "akregator";
  meta = {
    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" ];
}