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

View file

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