nixpkgs/pkgs/applications/kde/ghostwriter.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

57 lines
920 B
Nix
Raw Permalink Normal View History

2023-03-17 22:39:35 +00:00
{
lib,
mkDerivation,
extra-cmake-modules,
qttools,
qtwebengine,
kcoreaddons,
kconfigwidgets,
sonnet,
kxmlgui,
hunspell,
cmark,
multimarkdown,
pandoc,
}:
mkDerivation {
pname = "ghostwriter";
nativeBuildInputs = [
extra-cmake-modules
qttools
];
buildInputs = [
qtwebengine
hunspell
kcoreaddons
kconfigwidgets
sonnet
kxmlgui
];
qtWrapperArgs = [
"--prefix"
"PATH"
":"
(lib.makeBinPath [
cmark
multimarkdown
pandoc
])
];
meta = with lib; {
description = "Cross-platform, aesthetic, distraction-free Markdown editor";
mainProgram = "ghostwriter";
2023-03-17 22:39:35 +00:00
homepage = "https://ghostwriter.kde.org/";
changelog = "https://invent.kde.org/office/ghostwriter/-/blob/master/CHANGELOG.md";
license = licenses.gpl3Plus;
maintainers = with maintainers; [
dotlambda
erictapen
];
};
}