mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
16 lines
332 B
Nix
16 lines
332 B
Nix
{
|
|
mkDerivation, lib,
|
|
extra-cmake-modules, ki18n,
|
|
kcoreaddons, kconfig, kcodecs
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "kcontacts";
|
|
meta = {
|
|
license = [ lib.licenses.lgpl21 ];
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
nativeBuildInputs = [ extra-cmake-modules ki18n ];
|
|
buildInputs = [ kcoreaddons kconfig kcodecs ];
|
|
}
|