My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/libraries/kde-frameworks/kcontacts.nix

18 lines
387 B

{
mkDerivation, lib,
extra-cmake-modules, isocodes,
kcoreaddons, kconfig, kcodecs, ki18n, qtbase,
}:
mkDerivation {
pname = "kcontacts";
meta = {
license = [ lib.licenses.lgpl21 ];
};
propagatedBuildInputs = [
isocodes
];
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [ kcoreaddons kconfig kcodecs ki18n qtbase ];
outputs = [ "out" "dev" ];
}