Files

32 lines
436 B
Nix

{
mkDerivation,
cmake,
extra-cmake-modules,
kdoctools,
karchive,
kconfig,
kcoreaddons,
ki18n,
qtbase,
}:
mkDerivation {
pname = "kpackage";
nativeBuildInputs = [
cmake
extra-cmake-modules
kdoctools
];
buildInputs = [
karchive
kconfig
kcoreaddons
ki18n
qtbase
];
patches = [
./0001-Allow-external-paths-default.patch
./0002-QDirIterator-follow-symlinks.patch
];
}