16 lines
374 B
Nix
Raw Permalink Normal View History

2016-12-18 08:26:15 -06:00
{
mkDerivation,
extra-cmake-modules, kdoctools,
karchive, kconfig, kcoreaddons, ki18n, qtbase,
2016-04-21 10:32:21 -05:00
}:
mkDerivation {
2016-04-21 10:32:21 -05:00
name = "kpackage";
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [ karchive kconfig kcoreaddons ki18n qtbase ];
patches = [
2021-03-28 10:28:03 -05:00
./0001-Allow-external-paths-default.patch
./0002-QDirIterator-follow-symlinks.patch
];
2016-04-21 10:32:21 -05:00
}