2016-04-21 16:32:21 +01:00
|
|
|
{ kdeFramework, lib, copyPathsToStore
|
|
|
|
, extra-cmake-modules
|
|
|
|
, karchive
|
|
|
|
, kconfig
|
|
|
|
, kcoreaddons
|
|
|
|
, kdoctools
|
|
|
|
, ki18n
|
|
|
|
, makeQtWrapper
|
|
|
|
}:
|
|
|
|
|
|
|
|
kdeFramework {
|
|
|
|
name = "kpackage";
|
2016-04-28 16:59:07 +01:00
|
|
|
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
|
2016-04-21 16:32:21 +01:00
|
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ];
|
2016-04-28 16:59:07 +01:00
|
|
|
propagatedBuildInputs = [ karchive kconfig kcoreaddons ki18n ];
|
2016-04-21 16:32:21 +01:00
|
|
|
patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
|
|
|
|
postInstall = ''
|
|
|
|
wrapQtProgram "$out/bin/kpackagetool5"
|
|
|
|
'';
|
|
|
|
}
|