mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
28 lines
878 B
Nix
28 lines
878 B
Nix
{
|
|
mkDerivation, lib, kdepimTeam,
|
|
extra-cmake-modules, kdoctools,
|
|
qtwebengine,
|
|
kcmutils, kcrash, kdbusaddons, kparts, kwindowsystem,
|
|
akonadi, grantleetheme, kontactinterface, kpimtextedit,
|
|
mailcommon, libkdepim, pimcommon,
|
|
akregator, kaddressbook, kmail, knotes, korganizer, zanshin
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "kontact";
|
|
meta = {
|
|
homepage = "https://apps.kde.org/kontact/";
|
|
description = "Personal information manager";
|
|
mainProgram = "kontact";
|
|
license = with lib.licenses; [ gpl2Plus lgpl21Plus fdl12Plus ];
|
|
maintainers = kdepimTeam;
|
|
};
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
|
buildInputs = [
|
|
qtwebengine
|
|
kcmutils kcrash kdbusaddons kparts kwindowsystem
|
|
akonadi grantleetheme kontactinterface kpimtextedit
|
|
mailcommon libkdepim pimcommon
|
|
akregator kaddressbook kmail knotes korganizer zanshin
|
|
];
|
|
}
|