forked from mirrors/nixpkgs
17 lines
436 B
Nix
17 lines
436 B
Nix
{
|
|
mkDerivation, lib,
|
|
extra-cmake-modules, kdoctools,
|
|
karchive, kconfig, kcoreaddons, ki18n, qtbase,
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "kpackage";
|
|
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
|
buildInputs = [ karchive kconfig kcoreaddons ki18n qtbase ];
|
|
patches = [
|
|
./0001-Allow-external-paths-default.patch
|
|
./0002-QDirIterator-follow-symlinks.patch
|
|
];
|
|
}
|