ab16bbd0a4
ktexteditor-5.18.0 needs its patches updated. An optional dependency on `libgit2` was also added. `makeQtWrapper` was added to `nativeBuildInputs` to set `XDG_DATA_DIRS` correctly.
22 lines
593 B
Nix
22 lines
593 B
Nix
{ kdeFramework, lib, copyPathsToStore
|
|
, extra-cmake-modules, makeQtWrapper, perl
|
|
, karchive, kconfig, kguiaddons, kiconthemes, kparts
|
|
, libgit2
|
|
, qtscript, qtxmlpatterns
|
|
, ki18n, kio, sonnet
|
|
}:
|
|
|
|
kdeFramework {
|
|
name = "ktexteditor";
|
|
nativeBuildInputs = [ extra-cmake-modules makeQtWrapper perl ];
|
|
buildInputs = [
|
|
karchive kconfig kguiaddons kiconthemes kparts
|
|
libgit2
|
|
qtscript qtxmlpatterns
|
|
];
|
|
propagatedBuildInputs = [ ki18n kio sonnet ];
|
|
patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
|
|
meta = {
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
}
|