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