c7cb07f092
GitOrigin-RevId: 1536926ef5621b09bba54035ae2bb6d806d72ac8
17 lines
306 B
Nix
17 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];
|
|
}
|