pdfpc: 4.6.0 -> 4.7.0

Diff: https://github.com/pdfpc/pdfpc/compare/v4.6.0...v4.7.0

Since https://github.com/pdfpc/pdfpc/pull/728,
libsoup3 (and thus webkitgtk_4_1) is supported.

The two previously applied patches are included in the release, see:
https://github.com/pdfpc/pdfpc/commit/d38edfac63bec54173b4b31eae5c7fb46cd8f714
https://github.com/pdfpc/pdfpc/pull/716/commits/29a5d226f62ae081de5ee779baef827b51e3841c
This commit is contained in:
Grimmauld
2025-04-12 08:46:29 +02:00
parent aadbacdf42
commit 86471c0cde
+4 -20
View File
@@ -16,7 +16,7 @@
gobject-introspection,
wrapGAppsHook3,
qrencode,
webkitgtk_4_0,
webkitgtk_4_1,
discount,
json-glib,
fetchpatch,
@@ -24,13 +24,13 @@
stdenv.mkDerivation rec {
pname = "pdfpc";
version = "4.6.0";
version = "4.7.0";
src = fetchFromGitHub {
repo = "pdfpc";
owner = "pdfpc";
rev = "v${version}";
hash = "sha256-5HFmbVsNajMwo+lBe9kJcJyQGe61N6Oy2CI/WJwmSE4=";
hash = "sha256-fPhCrn1ELC03/II+e021BUNJr1OKCBIcFCM7z+2Oo+s=";
};
nativeBuildInputs = [
@@ -52,27 +52,11 @@ stdenv.mkDerivation rec {
(gst-plugins-good.override { gtkSupport = true; })
gst-libav
qrencode
webkitgtk_4_0
webkitgtk_4_1
discount
json-glib
];
patches = [
# needed for compiling pdfpc 4.6.0 with vala 0.56.7, see
# https://github.com/pdfpc/pdfpc/issues/686
# https://github.com/pdfpc/pdfpc/pull/687
(fetchpatch {
url = "https://github.com/pdfpc/pdfpc/commit/d38edfac63bec54173b4b31eae5c7fb46cd8f714.diff";
hash = "sha256-KC2oyzcwU2fUmxaed8qAsKcePwR5KcXgpVdstJg8KmU=";
})
# Allow compiling with markdown3
# https://github.com/pdfpc/pdfpc/pull/716
(fetchpatch {
url = "https://github.com/pdfpc/pdfpc/commit/08e66b9d432e9598c1ee9a78b2355728036ae1a1.patch";
hash = "sha256-SKH2GQ5/6Is36xOFmSs89Yw/w7Fnma3FrNqwjOlUQKM=";
})
];
cmakeFlags = lib.optional stdenv.hostPlatform.isDarwin (lib.cmakeBool "MOVIES" false);
meta = with lib; {