2019-10-03 18:35:11 +00:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, pkgconfig, vala, gtk3, libgee, fetchpatch
|
|
|
|
, poppler, libpthreadstubs, gstreamer, gst-plugins-base, librsvg, pcre, gobject-introspection, wrapGAppsHook }:
|
2015-06-02 11:14:51 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "${product}-${version}";
|
|
|
|
product = "pdfpc";
|
2019-07-02 06:24:11 +00:00
|
|
|
version = "4.3.4";
|
2015-06-02 11:14:51 +00:00
|
|
|
|
2015-11-20 16:07:08 +00:00
|
|
|
src = fetchFromGitHub {
|
2019-02-06 20:05:53 +00:00
|
|
|
repo = product;
|
|
|
|
owner = product;
|
2015-11-20 16:07:08 +00:00
|
|
|
rev = "v${version}";
|
2019-07-02 06:24:11 +00:00
|
|
|
sha256 = "07aafsm4jzdgpahz83p0ajv40hry7gviyadqi13ahr8xdhhwy2sd";
|
2015-06-02 11:14:51 +00:00
|
|
|
};
|
|
|
|
|
2017-12-13 11:45:02 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake pkgconfig vala
|
|
|
|
# For setup hook
|
2018-12-02 11:41:15 +00:00
|
|
|
gobject-introspection
|
2019-10-03 18:35:11 +00:00
|
|
|
wrapGAppsHook
|
2017-12-13 11:45:02 +00:00
|
|
|
];
|
2017-01-09 19:54:48 +00:00
|
|
|
buildInputs = [ gstreamer gst-plugins-base gtk3 libgee poppler
|
2019-10-03 18:35:11 +00:00
|
|
|
libpthreadstubs librsvg pcre ];
|
2017-03-16 16:21:14 +00:00
|
|
|
|
2019-10-29 22:21:22 +00:00
|
|
|
cmakeFlags = stdenv.lib.optional stdenv.isDarwin "-DMOVIES=OFF";
|
2015-06-02 11:14:51 +00:00
|
|
|
|
2019-10-03 18:35:11 +00:00
|
|
|
patches = [
|
|
|
|
# Fix build vala 0.46
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/pdfpc/pdfpc/commit/bbc16b97ecbdcdd22c2dc827a5c0e8b569073312.patch";
|
|
|
|
sha256 = "0wi1rqcvg65cxnxvmvavcvghqyksnpijq1p91m57jaby3hb0pdcy";
|
|
|
|
})
|
|
|
|
];
|
2015-06-02 11:14:51 +00: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 16:21:14 +00:00
|
|
|
platforms = platforms.unix;
|
2015-06-02 11:14:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|