2021-02-21 05:43:55 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, vala, gtk3, libgee
|
2021-01-03 09:01:03 +00:00
|
|
|
, poppler, libpthreadstubs, gstreamer, gst-plugins-base, gst-plugins-good, gst-libav, librsvg, pcre, gobject-introspection, wrapGAppsHook
|
|
|
|
, webkitgtk, discount, json-glib }:
|
2015-06-02 12:14:51 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2022-03-07 11:37:20 +00:00
|
|
|
pname = "pdfpc";
|
2021-01-03 09:01:03 +00:00
|
|
|
version = "4.5.0";
|
2015-06-02 12:14:51 +01:00
|
|
|
|
2015-11-20 16:07:08 +00:00
|
|
|
src = fetchFromGitHub {
|
2022-03-07 11:37:20 +00:00
|
|
|
repo = "pdfpc";
|
|
|
|
owner = "pdfpc";
|
2015-11-20 16:07:08 +00:00
|
|
|
rev = "v${version}";
|
2021-01-03 09:01:03 +00:00
|
|
|
sha256 = "0bmy51w6ypz927hxwp5g7wapqvzqmsi3w32rch6i3f94kg1152ck";
|
2015-06-02 12:14:51 +01:00
|
|
|
};
|
|
|
|
|
2017-12-13 11:45:02 +00:00
|
|
|
nativeBuildInputs = [
|
2021-01-17 02:09:27 +00:00
|
|
|
cmake pkg-config vala
|
2017-12-13 11:45:02 +00:00
|
|
|
# For setup hook
|
2018-12-02 11:41:15 +00:00
|
|
|
gobject-introspection
|
2019-10-03 19:35:11 +01:00
|
|
|
wrapGAppsHook
|
2017-12-13 11:45:02 +00:00
|
|
|
];
|
2020-01-20 19:02:14 +00:00
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
gtk3 libgee poppler
|
|
|
|
libpthreadstubs librsvg pcre
|
|
|
|
gstreamer
|
|
|
|
gst-plugins-base
|
|
|
|
(gst-plugins-good.override { gtkSupport = true; })
|
|
|
|
gst-libav
|
2021-01-03 09:01:03 +00:00
|
|
|
webkitgtk
|
|
|
|
discount
|
|
|
|
json-glib
|
2020-01-20 19:02:14 +00:00
|
|
|
];
|
2017-03-16 16:21:14 +00:00
|
|
|
|
2021-01-15 05:42:41 +00:00
|
|
|
cmakeFlags = lib.optional stdenv.isDarwin "-DMOVIES=OFF";
|
2015-06-02 12:14:51 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2015-06-02 12:14:51 +01:00
|
|
|
description = "A presenter console with multi-monitor support for PDF files";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://pdfpc.github.io/";
|
2021-01-28 08:48:18 +00:00
|
|
|
license = licenses.gpl3Plus;
|
2015-06-02 12:14:51 +01:00
|
|
|
maintainers = with maintainers; [ pSub ];
|
2017-03-16 16:21:14 +00:00
|
|
|
platforms = platforms.unix;
|
2015-06-02 12:14:51 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|