Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
417 B
Nix
Raw Permalink Normal View History

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