75 lines
1.4 KiB
Nix
75 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
appstream,
|
|
blueprint-compiler,
|
|
desktop-file-utils,
|
|
fetchFromGitLab,
|
|
glib,
|
|
gobject-introspection,
|
|
gtk4,
|
|
libadwaita,
|
|
meson,
|
|
ninja,
|
|
nix-update-script,
|
|
pandoc,
|
|
pkg-config,
|
|
python3Packages,
|
|
webkitgtk_6_0,
|
|
wrapGAppsHook4,
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "morphosis";
|
|
version = "1.4.1";
|
|
pyproject = false;
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "gitlab.gnome.org";
|
|
owner = "World";
|
|
repo = "morphosis";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-ZpxenBqC5qr7yNwjld0u7gSBQfL7Kpa4FWE9gkzG0hg=";
|
|
};
|
|
|
|
strictDeps = true;
|
|
|
|
nativeBuildInputs = [
|
|
appstream
|
|
blueprint-compiler
|
|
desktop-file-utils
|
|
glib # For `glib-compile-schemas`
|
|
gobject-introspection
|
|
gtk4 # For `gtk-update-icon-cache`
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
wrapGAppsHook4
|
|
];
|
|
|
|
buildInputs = [
|
|
libadwaita
|
|
webkitgtk_6_0
|
|
];
|
|
|
|
dependencies = with python3Packages; [ pygobject3 ];
|
|
|
|
dontWrapGApps = true;
|
|
makeWrapperArgs = [
|
|
"\${gappsWrapperArgs[@]}"
|
|
"--prefix PATH : ${lib.makeBinPath [ pandoc ]}"
|
|
];
|
|
|
|
passthru = {
|
|
updateScript = nix-update-script { };
|
|
};
|
|
|
|
meta = {
|
|
description = "Convert your documents";
|
|
homepage = "https://gitlab.gnome.org/World/morphosis";
|
|
license = lib.licenses.gpl3Only;
|
|
maintainers = with lib.maintainers; [ getchoo ];
|
|
mainProgram = "morphosis";
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|