mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 12:23:02 +00:00
kaddressbook: init at 17.04.0
This commit is contained in:
parent
60f56bac82
commit
7fe86510c1
@ -69,6 +69,7 @@ let
|
||||
grantleetheme = callPackage ./grantleetheme {};
|
||||
gwenview = callPackage ./gwenview.nix {};
|
||||
k3b = callPackage ./k3b.nix {};
|
||||
kaddressbook = callPackage ./kaddressbook.nix {};
|
||||
kalarmcal = callPackage ./kalarmcal.nix {};
|
||||
kate = callPackage ./kate.nix {};
|
||||
kcachegrind = callPackage ./kcachegrind.nix {};
|
||||
|
22
pkgs/applications/kde/kaddressbook.nix
Normal file
22
pkgs/applications/kde/kaddressbook.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{
|
||||
mkDerivation, lib, kdepimTeam,
|
||||
extra-cmake-modules, kdoctools,
|
||||
akonadi, akonadi-search, grantlee, grantleetheme, kcmutils, kcompletion,
|
||||
kcrash, kdbusaddons, kdepim-apps-libs, ki18n, kontactinterface, kparts,
|
||||
kpimtextedit, kxmlgui, libkdepim, libkleo, mailcommon, pimcommon, prison,
|
||||
qgpgme, qtbase,
|
||||
}:
|
||||
|
||||
mkDerivation {
|
||||
name = "kaddressbook";
|
||||
meta = {
|
||||
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
|
||||
maintainers = kdepimTeam;
|
||||
};
|
||||
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
||||
buildInputs = [
|
||||
akonadi akonadi-search grantlee grantleetheme kcmutils kcompletion kcrash
|
||||
kdbusaddons kdepim-apps-libs ki18n kontactinterface kparts kpimtextedit
|
||||
kxmlgui libkdepim libkleo mailcommon pimcommon prison qgpgme qtbase
|
||||
];
|
||||
}
|
Loading…
Reference in New Issue
Block a user