2019-10-03 20:35:11 +02:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, pkgconfig, vala, gtk3, libgee, fetchpatch
|
|
|
|
, poppler, libpthreadstubs, gstreamer, gst-plugins-base, librsvg, pcre, gobject-introspection, wrapGAppsHook }:
|
2015-06-02 13:14:51 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "${product}-${version}";
|
|
|
|
product = "pdfpc";
|
2019-07-02 08:24:11 +02:00
|
|
|
version = "4.3.4";
|
2015-06-02 13:14:51 +02:00
|
|
|
|
2015-11-20 17:07:08 +01:00
|
|
|
src = fetchFromGitHub {
|
2019-02-06 21:05:53 +01:00
|
|
|
repo = product;
|
|
|
|
owner = product;
|
2015-11-20 17:07:08 +01:00
|
|
|
rev = "v${version}";
|
2019-07-02 08:24:11 +02:00
|
|
|
sha256 = "07aafsm4jzdgpahz83p0ajv40hry7gviyadqi13ahr8xdhhwy2sd";
|
2015-06-02 13:14:51 +02:00
|
|
|
};
|
|
|
|
|
2017-12-13 12:45:02 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake pkgconfig vala
|
|
|
|
# For setup hook
|
2018-12-02 12:41:15 +01:00
|
|
|
gobject-introspection
|
2019-10-03 20:35:11 +02:00
|
|
|
wrapGAppsHook
|
2017-12-13 12:45:02 +01:00
|
|
|
];
|
2017-01-09 20:54:48 +01:00
|
|
|
buildInputs = [ gstreamer gst-plugins-base gtk3 libgee poppler
|
2019-10-03 20:35:11 +02:00
|
|
|
libpthreadstubs librsvg pcre ];
|
2017-03-16 17:21:14 +01:00
|
|
|
|
|
|
|
cmakeFlags = stdenv.lib.optionalString stdenv.isDarwin "-DMOVIES=OFF";
|
2015-06-02 13:14:51 +02:00
|
|
|
|
2019-10-03 20:35:11 +02:00
|
|
|
patches = [
|
|
|
|
# Fix build vala 0.46
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/pdfpc/pdfpc/commit/bbc16b97ecbdcdd22c2dc827a5c0e8b569073312.patch";
|
|
|
|
sha256 = "0wi1rqcvg65cxnxvmvavcvghqyksnpijq1p91m57jaby3hb0pdcy";
|
|
|
|
})
|
|
|
|
];
|
2015-06-02 13:14:51 +02:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A presenter console with multi-monitor support for PDF files";
|
|
|
|
homepage = https://pdfpc.github.io/;
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = with maintainers; [ pSub ];
|
2017-03-16 17:21:14 +01:00
|
|
|
platforms = platforms.unix;
|
2015-06-02 13:14:51 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|