mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 01:13:05 +00:00
akregator: init at 17.04.0
This commit is contained in:
parent
7182709174
commit
7640cae5b0
30
pkgs/applications/kde/akregator.nix
Normal file
30
pkgs/applications/kde/akregator.nix
Normal file
@ -0,0 +1,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" ];
|
||||
}
|
@ -58,6 +58,7 @@ let
|
||||
akonadi-notes = callPackage ./akonadi-notes.nix {};
|
||||
akonadi-search = callPackage ./akonadi-search.nix {};
|
||||
akonadiconsole = callPackage ./akonadiconsole.nix {};
|
||||
akregator = callPackage ./akregator.nix {};
|
||||
ark = callPackage ./ark {};
|
||||
baloo-widgets = callPackage ./baloo-widgets.nix {};
|
||||
calendarsupport = callPackage ./calendarsupport.nix {};
|
||||
@ -125,6 +126,7 @@ let
|
||||
pim-sieve-editor = callPackage ./pim-sieve-editor.nix {};
|
||||
print-manager = callPackage ./print-manager.nix {};
|
||||
spectacle = callPackage ./spectacle.nix {};
|
||||
syndication = callPackage ./syndication.nix {};
|
||||
|
||||
l10n = recurseIntoAttrs (import ./l10n.nix { inherit callPackage lib recurseIntoAttrs; });
|
||||
};
|
||||
|
15
pkgs/applications/kde/syndication.nix
Normal file
15
pkgs/applications/kde/syndication.nix
Normal file
@ -0,0 +1,15 @@
|
||||
{
|
||||
mkDerivation, lib, kdepimTeam,
|
||||
extra-cmake-modules, kdoctools,
|
||||
kio
|
||||
}:
|
||||
|
||||
mkDerivation {
|
||||
name = "syndication";
|
||||
meta = {
|
||||
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
|
||||
maintainers = kdepimTeam;
|
||||
};
|
||||
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
||||
propagatedBuildInputs = [ kio ];
|
||||
}
|
Loading…
Reference in New Issue
Block a user