1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/applications/kde/kcontacts.nix

17 lines
372 B
Nix
Raw Normal View History

{
2017-06-21 14:38:51 +01:00
mkDerivation, lib, kdepimTeam,
2017-05-17 20:26:11 +01:00
extra-cmake-modules,
kcoreaddons, kconfig, kcodecs, ki18n, qtbase,
}:
mkDerivation {
name = "kcontacts";
meta = {
license = [ lib.licenses.lgpl21 ];
2017-06-21 14:38:51 +01:00
maintainers = kdepimTeam;
};
2017-05-16 16:56:41 +01:00
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [ kcoreaddons kconfig kcodecs ki18n qtbase ];
2017-06-21 14:45:50 +01:00
outputs = [ "out" "dev" ];
}