mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
16 lines
439 B
Nix
16 lines
439 B
Nix
{
|
|
mkDerivation, extra-cmake-modules,
|
|
libepoxy, kconfig, kglobalaccel, kguiaddons, ki18n, kiconthemes, kio, kpackage,
|
|
kwidgetsaddons, kwindowsystem, qtdeclarative
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "kdeclarative";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [
|
|
libepoxy kglobalaccel kguiaddons ki18n kiconthemes kio kwidgetsaddons
|
|
kwindowsystem
|
|
];
|
|
propagatedBuildInputs = [ kconfig kpackage qtdeclarative ];
|
|
}
|