git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
15 lines
375 B
Nix
15 lines
375 B
Nix
{
|
|
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
|
|
];
|
|
}
|