mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-13 05:05:29 +03:00
pageedit: 2.0.0 -> 2.4.0 (#409180)
This commit is contained in:
commit
0cce42bc46
2 changed files with 13 additions and 11 deletions
|
@ -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;
|
||||||
};
|
};
|
||||||
}
|
})
|
||||||
|
|
|
@ -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 { };
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue