pageedit: 2.0.0 -> 2.4.0 (#409180)

This commit is contained in:
Aleksana 2025-05-25 10:59:24 +08:00 committed by GitHub
commit 0cce42bc46
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 13 additions and 11 deletions

View file

@ -9,15 +9,15 @@
qttools,
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "pageedit";
version = "2.0.0";
version = "2.4.0";
src = fetchFromGitHub {
owner = "Sigil-Ebook";
repo = pname;
rev = version;
hash = "sha256-zwOSt1eyvuuqfQ1G2bCB4yj6GgixFRc2FLOgcCrdg3Q=";
repo = "pageedit";
tag = finalAttrs.version;
hash = "sha256-BsK+agn8O2WeftiEHfT5B1hzsP5Av4DkIZqVKoQxb70=";
};
nativeBuildInputs = [
@ -25,10 +25,12 @@ stdenv.mkDerivation rec {
wrapQtAppsHook
qttools
];
propagatedBuildInputs = [
qtsvg
qtwebengine
];
cmakeFlags = [ "-DINSTALL_BUNDLED_DICTS=0" ];
installPhase =
@ -45,12 +47,12 @@ stdenv.mkDerivation rec {
else
null;
meta = with lib; {
meta = {
description = "ePub XHTML Visual Editor";
mainProgram = "pageedit";
homepage = "https://sigil-ebook.com/pageedit/";
license = licenses.gpl3Plus;
maintainers = [ maintainers.pasqui23 ];
platforms = platforms.all;
license = lib.licenses.gpl3Plus;
maintainers = [ lib.maintainers.pasqui23 ];
platforms = lib.platforms.all;
};
}
})

View file

@ -4085,7 +4085,7 @@ with pkgs;
padthv1 = libsForQt5.callPackage ../applications/audio/padthv1 { };
pageedit = libsForQt5.callPackage ../applications/office/PageEdit { };
pageedit = qt6Packages.callPackage ../applications/office/PageEdit { };
pagefind = libsForQt5.callPackage ../applications/misc/pagefind { };