3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/kde/kcontacts.nix
2017-06-18 08:44:42 -05:00

18 lines
365 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 ];
buildInputs = [ ki18n ];
propagatedBuildInputs = [ kcoreaddons kconfig kcodecs ];
}