2016-12-18 08:26:15 -06:00
|
|
|
{
|
2020-08-25 11:43:59 +02:00
|
|
|
mkDerivation, lib,
|
2017-02-26 06:49:15 -06:00
|
|
|
extra-cmake-modules, kdoctools,
|
2017-05-22 13:49:07 -05:00
|
|
|
karchive, kconfig, kcoreaddons, ki18n, qtbase,
|
2016-04-21 10:32:21 -05:00
|
|
|
}:
|
|
|
|
|
2017-05-15 12:05:35 -05:00
|
|
|
mkDerivation {
|
2016-04-21 10:32:21 -05:00
|
|
|
name = "kpackage";
|
2016-04-28 10:59:07 -05:00
|
|
|
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
|
2017-02-26 06:49:15 -06:00
|
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
2017-05-22 13:49:07 -05:00
|
|
|
buildInputs = [ karchive kconfig kcoreaddons ki18n qtbase ];
|
2020-08-25 11:43:59 +02:00
|
|
|
patches = [
|
|
|
|
./allow-external-paths.patch
|
|
|
|
./qdiriterator-follow-symlinks.patch
|
|
|
|
];
|
2016-04-21 10:32:21 -05:00
|
|
|
}
|