18 lines
306 B
Nix
18 lines
306 B
Nix
|
{
|
||
|
mkKdeDerivation,
|
||
|
qtsvg,
|
||
|
qttools,
|
||
|
qtwebchannel,
|
||
|
qtwebengine,
|
||
|
qt5compat,
|
||
|
pkg-config,
|
||
|
hunspell,
|
||
|
kdoctools,
|
||
|
}:
|
||
|
mkKdeDerivation {
|
||
|
pname = "ghostwriter";
|
||
|
|
||
|
extraNativeBuildInputs = [pkg-config kdoctools];
|
||
|
extraBuildInputs = [qtsvg qttools qtwebchannel qtwebengine qt5compat hunspell];
|
||
|
}
|