mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
16 lines
363 B
Nix
16 lines
363 B
Nix
{
|
|
mkDerivation, lib,
|
|
extra-cmake-modules,
|
|
akonadi, kdbusaddons, kio, kitemmodels, kmime
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "akonadi-mime";
|
|
meta = {
|
|
license = with lib.licenses; [ gpl2 lgpl21 ];
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [ akonadi kdbusaddons kio kitemmodels kmime ];
|
|
}
|