nixpkgs/pkgs/applications/kde/kcontacts.nix

17 lines
363 B
Nix
Raw Normal View History

{
mkDerivation, lib,
extra-cmake-modules, ki18n,
kcoreaddons, kconfig, kcodecs
}:
mkDerivation {
name = "kcontacts";
meta = {
license = [ lib.licenses.lgpl21 ];
maintainers = [ lib.maintainers.ttuegel ];
};
2017-05-16 17:56:41 +02:00
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [ ki18n ];
propagatedBuildInputs = [ kcoreaddons kconfig kcodecs ];
}