mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-25 22:33:43 +00:00
kdePackages.ghostwriter: add missing dependencies
This commit is contained in:
parent
c9281e015b
commit
166e8c3299
@ -1,4 +1,5 @@
|
||||
{
|
||||
lib,
|
||||
mkKdeDerivation,
|
||||
qtsvg,
|
||||
qttools,
|
||||
@ -8,11 +9,26 @@
|
||||
pkg-config,
|
||||
hunspell,
|
||||
kdoctools,
|
||||
pandoc,
|
||||
multimarkdown,
|
||||
cmark,
|
||||
}:
|
||||
mkKdeDerivation {
|
||||
pname = "ghostwriter";
|
||||
|
||||
extraNativeBuildInputs = [pkg-config];
|
||||
extraBuildInputs = [qtsvg qttools qtwebchannel qtwebengine qt5compat kdoctools hunspell];
|
||||
|
||||
qtWrapperArgs = [
|
||||
"--prefix"
|
||||
"PATH"
|
||||
":"
|
||||
(lib.makeBinPath [
|
||||
cmark
|
||||
multimarkdown
|
||||
pandoc
|
||||
])
|
||||
];
|
||||
|
||||
meta.mainProgram = "ghostwriter";
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user