mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
13 lines
364 B
Nix
13 lines
364 B
Nix
{ mkDerivation, lib, extra-cmake-modules, kcoreaddons, ki18n
|
|
, kitemviews, kservice, kwidgetsaddons, qtdeclarative
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "kpeople";
|
|
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
propagatedBuildInputs = [
|
|
kcoreaddons ki18n kitemviews kservice kwidgetsaddons qtdeclarative
|
|
];
|
|
}
|