nixpkgs/pkgs/applications/kde/akregator.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

71 lines
1006 B
Nix
Raw Normal View History

2017-04-07 18:06:26 +00:00
{
mkDerivation,
lib,
kdepimTeam,
extra-cmake-modules,
kdoctools,
qtwebengine,
grantlee,
kcmutils,
kcrash,
kiconthemes,
knotifyconfig,
kparts,
ktexteditor,
kuserfeedback,
2017-04-07 18:06:26 +00:00
kwindowsystem,
akonadi,
akonadi-mime,
grantleetheme,
kontactinterface,
libkdepim,
libkleo,
messagelib,
syndication,
}:
mkDerivation {
2020-12-24 23:05:07 +00:00
pname = "akregator";
2017-04-07 18:06:26 +00:00
meta = {
homepage = "https://apps.kde.org/akregator/";
description = "KDE feed reader";
2022-10-27 20:47:29 +00:00
license = with lib.licenses; [
gpl2Plus
lgpl21Plus
fdl12Plus
];
2017-04-07 18:06:26 +00:00
maintainers = kdepimTeam;
};
nativeBuildInputs = [
extra-cmake-modules
kdoctools
];
buildInputs = [
qtwebengine
grantlee
kcmutils
kcrash
kiconthemes
knotifyconfig
kparts
ktexteditor
kuserfeedback
kwindowsystem
2017-04-07 18:06:26 +00:00
akonadi
akonadi-mime
grantleetheme
kontactinterface
libkdepim
libkleo
messagelib
syndication
];
2017-04-07 18:06:26 +00:00
outputs = [
"out"
"dev"
2017-04-07 18:06:26 +00:00
];
}