nixpkgs/pkgs/development/libraries/kde-frameworks-5.13/kdeclarative.nix

31 lines
589 B
Nix
Raw Normal View History

2015-09-27 17:02:10 +02:00
{ mkDerivation, lib
, extra-cmake-modules
, epoxy
, kconfig
, kglobalaccel
, kguiaddons
, ki18n
, kiconthemes
, kio
, kpackage
, kwidgetsaddons
, kwindowsystem
, pkgconfig
, qtdeclarative
}:
mkDerivation {
name = "kdeclarative";
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [
epoxy kglobalaccel kguiaddons ki18n kiconthemes kio kwidgetsaddons kwindowsystem
];
propagatedBuildInputs = [ kconfig kpackage qtdeclarative ];
postInstall = ''
wrapKDEProgram "$out/bin/kpackagelauncherqml"
'';
meta = {
maintainers = [ lib.maintainers.ttuegel ];
};
}