mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
16 lines
319 B
Nix
16 lines
319 B
Nix
|
{
|
||
|
kdeApp, lib,
|
||
|
ecm,
|
||
|
akonadi, kdbusaddons, kio, kitemmodels, kmime
|
||
|
}:
|
||
|
|
||
|
kdeApp {
|
||
|
name = "akonadi-mime";
|
||
|
meta = {
|
||
|
license = with lib.licenses; [ gpl2 lgpl21 ];
|
||
|
maintainers = [ lib.maintainers.ttuegel ];
|
||
|
};
|
||
|
nativeBuildInputs = [ ecm ];
|
||
|
buildInputs = [ akonadi kdbusaddons kio kitemmodels kmime ];
|
||
|
}
|