mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-22 05:33:23 +00:00
16 lines
347 B
Nix
16 lines
347 B
Nix
{
|
|
mkDerivation,
|
|
extra-cmake-modules,
|
|
kcoreaddons, ki18n, kitemviews, kservice, kwidgetsaddons, qtbase,
|
|
qtdeclarative,
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "kpeople";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [
|
|
kcoreaddons ki18n kitemviews kservice kwidgetsaddons qtdeclarative
|
|
];
|
|
propagatedBuildInputs = [ qtbase ];
|
|
}
|