mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-13 23:53:26 +00:00
![stuebinm](/assets/img/avatar_default.png)
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.
25 lines
309 B
Nix
25 lines
309 B
Nix
{
|
|
mkKdeDerivation,
|
|
qtwebengine,
|
|
akregator,
|
|
kaddressbook,
|
|
kmail,
|
|
knotes,
|
|
korganizer,
|
|
zanshin,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "kontact";
|
|
|
|
extraBuildInputs = [
|
|
qtwebengine
|
|
akregator
|
|
kaddressbook
|
|
kmail
|
|
knotes
|
|
korganizer
|
|
zanshin
|
|
];
|
|
meta.mainProgram = "kontact";
|
|
}
|