Merge pull request #325434 from Aleksanaa/pdf4qt
pdf4qt: 1.3.7 -> 1.4.0.0; blend2d: init at 0.10
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
{
|
||||
lib,
|
||||
stdenv,
|
||||
fetchFromGitHub,
|
||||
cmake,
|
||||
asmjit,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "blend2d";
|
||||
# Note: this is an outdated version for pdf4qt, but vcpkg also uses it
|
||||
# See 'Commit Hashes' in https://blend2d.com/download.html for newest
|
||||
# If the newest version is needed, we can rename this package.
|
||||
version = "0.10";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "blend2d";
|
||||
repo = "blend2d";
|
||||
rev = "452d549751188b04367b5af46c040cb737f5f76c";
|
||||
hash = "sha256-LDhnXsp/V1A3YqVyjBVaL7/V6Nhts/1E9hRhl2P293o=";
|
||||
};
|
||||
|
||||
outputs = [
|
||||
"out"
|
||||
"dev"
|
||||
];
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
|
||||
cmakeFlags = [ (lib.cmakeFeature "ASMJIT_DIR" (toString asmjit.src)) ];
|
||||
|
||||
meta = {
|
||||
description = "2D Vector Graphics Engine Powered by a JIT Compiler";
|
||||
homepage = "https://blend2d.com";
|
||||
license = lib.licenses.zlib;
|
||||
maintainers = with lib.maintainers; [ aleksana ];
|
||||
platforms = lib.platforms.all;
|
||||
};
|
||||
}
|
||||
@@ -6,19 +6,21 @@
|
||||
, cmake
|
||||
, pkg-config
|
||||
, qt6
|
||||
, wrapGAppsHook3
|
||||
, openjpeg
|
||||
, tbb_2021_11
|
||||
, blend2d
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "pdf4qt";
|
||||
version = "1.3.7";
|
||||
version = "1.4.0.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "JakubMelka";
|
||||
repo = "PDF4QT";
|
||||
rev = "v${finalAttrs.version}";
|
||||
hash = "sha256-wZJDMLEaHGBPSToQ+ObSfB5tw/fTIX1i5tmNPmIa7Ck=";
|
||||
hash = "sha256-NlIy/C4uHRG5wwXPuqCShe113qhhsQ5jp50zrOLLA2c=";
|
||||
};
|
||||
|
||||
patches = [
|
||||
@@ -33,6 +35,8 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
pkg-config
|
||||
qt6.qttools
|
||||
qt6.wrapQtAppsHook
|
||||
# GLib-GIO-ERROR: No GSettings schemas are installed on the system
|
||||
wrapGAppsHook3
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
@@ -43,12 +47,19 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
lcms
|
||||
openjpeg
|
||||
tbb_2021_11
|
||||
blend2d
|
||||
];
|
||||
|
||||
cmakeFlags = [
|
||||
(lib.cmakeBool "PDF4QT_INSTALL_TO_USR" false)
|
||||
];
|
||||
|
||||
dontWrapGApps = true;
|
||||
|
||||
preFixup = ''
|
||||
qtWrapperArgs+=(''${gappsWrapperArgs[@]})
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Open source PDF editor";
|
||||
longDescription = ''
|
||||
|
||||
Reference in New Issue
Block a user