16 lines
320 B
Nix
16 lines
320 B
Nix
{
|
|
kdeApp, lib,
|
|
extra-cmake-modules, ki18n,
|
|
kcoreaddons, kconfig, kcodecs
|
|
}:
|
|
|
|
kdeApp {
|
|
name = "kcontacts";
|
|
meta = {
|
|
license = [ lib.licenses.lgpl21 ];
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
nativeBuildInputs = [ extra-cmake-modules ki18n ];
|
|
buildInputs = [ kcoreaddons kconfig kcodecs ];
|
|
}
|