2016-11-17 21:50:33 +00:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, makeWrapper, pkgconfig, vala, gtk3, libgee
|
2017-03-16 16:21:14 +00:00
|
|
|
, poppler, libpthreadstubs, gstreamer, gst-plugins-base, librsvg, pcre }:
|
2015-06-02 12:14:51 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "${product}-${version}";
|
|
|
|
product = "pdfpc";
|
2017-07-04 10:34:32 +01:00
|
|
|
version = "4.0.7";
|
2015-06-02 12:14:51 +01:00
|
|
|
|
2015-11-20 16:07:08 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
repo = "pdfpc";
|
|
|
|
owner = "pdfpc";
|
|
|
|
rev = "v${version}";
|
2017-07-04 10:34:32 +01:00
|
|
|
sha256 = "00qfmmk8h762p53z46g976z7j4fbxyi16w5axzsv1ymvdq95ds8c";
|
2015-06-02 12:14:51 +01:00
|
|
|
};
|
|
|
|
|
2017-01-09 19:54:48 +00:00
|
|
|
nativeBuildInputs = [ cmake pkgconfig vala ];
|
|
|
|
buildInputs = [ gstreamer gst-plugins-base gtk3 libgee poppler
|
2017-03-16 16:21:14 +00:00
|
|
|
libpthreadstubs makeWrapper librsvg pcre ];
|
|
|
|
|
|
|
|
cmakeFlags = stdenv.lib.optionalString stdenv.isDarwin "-DMOVIES=OFF";
|
2015-06-02 12:14:51 +01:00
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
wrapProgram $out/bin/pdfpc \
|
|
|
|
--set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE"
|
|
|
|
'';
|
|
|
|
|
|
|
|
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 12:14:51 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|