mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
kontact: init at 17.04.0
This commit is contained in:
parent
7fe86510c1
commit
129413c474
@ -104,6 +104,7 @@ let
|
||||
kolourpaint = callPackage ./kolourpaint.nix {};
|
||||
kompare = callPackage ./kompare.nix {};
|
||||
konsole = callPackage ./konsole.nix {};
|
||||
kontact = callPackage ./kontact.nix {};
|
||||
kontactinterface = callPackage ./kontactinterface.nix {};
|
||||
kpimtextedit = callPackage ./kpimtextedit.nix {};
|
||||
krfb = callPackage ./krfb.nix {};
|
||||
|
23
pkgs/applications/kde/kontact.nix
Normal file
23
pkgs/applications/kde/kontact.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{
|
||||
mkDerivation, lib, kdepimTeam,
|
||||
extra-cmake-modules, kdoctools,
|
||||
qtwebengine,
|
||||
kcmutils, kcrash, kdbusaddons, kwindowsystem,
|
||||
akonadi, grantleetheme, kdepim-apps-libs, kontactinterface, kpimtextedit,
|
||||
mailcommon,
|
||||
}:
|
||||
|
||||
mkDerivation {
|
||||
name = "kontact";
|
||||
meta = {
|
||||
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
|
||||
maintainers = kdepimTeam;
|
||||
};
|
||||
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
||||
buildInputs = [
|
||||
qtwebengine
|
||||
kcmutils kcrash kdbusaddons kwindowsystem
|
||||
akonadi grantleetheme kdepim-apps-libs kontactinterface kpimtextedit
|
||||
mailcommon
|
||||
];
|
||||
}
|
Loading…
Reference in New Issue
Block a user