nixpkgs/pkgs/applications/kde/kcontacts.nix

18 lines
365 B
Nix
Raw Normal View History

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