mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-05 02:23:07 +03:00
43a7d90e97
This reverts commit 9769952933
.
19 lines
584 B
Nix
19 lines
584 B
Nix
{ kdeFramework, lib, extra-cmake-modules, epoxy, kconfig
|
|
, kglobalaccel, kguiaddons, ki18n, kiconthemes, kio, kpackage
|
|
, kwidgetsaddons, kwindowsystem, makeQtWrapper, pkgconfig
|
|
, qtdeclarative
|
|
}:
|
|
|
|
kdeFramework {
|
|
name = "kdeclarative";
|
|
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
|
|
nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ];
|
|
propagatedBuildInputs = [
|
|
epoxy kconfig kglobalaccel kguiaddons ki18n kiconthemes kio kpackage
|
|
kwidgetsaddons kwindowsystem qtdeclarative
|
|
];
|
|
postInstall = ''
|
|
wrapQtProgram "$out/bin/kpackagelauncherqml"
|
|
'';
|
|
}
|