5c370c0b2a
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
18 lines
342 B
Nix
18 lines
342 B
Nix
{
|
|
mkKdeDerivation,
|
|
qtsvg,
|
|
qttools,
|
|
qtwebchannel,
|
|
qtwebengine,
|
|
qt5compat,
|
|
pkg-config,
|
|
hunspell,
|
|
kdoctools,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "ghostwriter";
|
|
|
|
extraNativeBuildInputs = [pkg-config];
|
|
extraBuildInputs = [qtsvg qttools qtwebchannel qtwebengine qt5compat kdoctools hunspell];
|
|
meta.mainProgram = "ghostwriter";
|
|
}
|