Merge pull request #337156 from HeitorAugustoLN/ghostwriter-fix

kdePackages.ghostwriter: add missing dependencies
This commit is contained in:
K900 2024-08-25 14:13:22 +03:00 committed by GitHub
commit a798c0add4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,4 +1,5 @@
{
lib,
mkKdeDerivation,
qtsvg,
qttools,
@ -8,11 +9,34 @@
pkg-config,
hunspell,
kdoctools,
pandoc,
multimarkdown,
cmark,
}:
mkKdeDerivation {
pname = "ghostwriter";
extraNativeBuildInputs = [pkg-config];
extraBuildInputs = [qtsvg qttools qtwebchannel qtwebengine qt5compat kdoctools hunspell];
extraNativeBuildInputs = [ pkg-config ];
extraBuildInputs = [
qtsvg
qttools
qtwebchannel
qtwebengine
qt5compat
kdoctools
hunspell
];
qtWrapperArgs = [
"--prefix"
"PATH"
":"
(lib.makeBinPath [
cmark
multimarkdown
pandoc
])
];
meta.mainProgram = "ghostwriter";
}