2021-01-17 03:09:27 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, vala, gtk3, libgee, fetchpatch
|
2021-01-03 10:01:03 +01:00
|
|
|
, poppler, libpthreadstubs, gstreamer, gst-plugins-base, gst-plugins-good, gst-libav, librsvg, pcre, gobject-introspection, wrapGAppsHook
|
|
|
|
, webkitgtk, discount, json-glib }:
|
2015-06-02 13:14:51 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "${product}-${version}";
|
|
|
|
product = "pdfpc";
|
2021-01-03 10:01:03 +01:00
|
|
|
version = "4.5.0";
|
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}";
|
2021-01-03 10:01:03 +01:00
|
|
|
sha256 = "0bmy51w6ypz927hxwp5g7wapqvzqmsi3w32rch6i3f94kg1152ck";
|
2015-06-02 13:14:51 +02:00
|
|
|
};
|
|
|
|
|
2017-12-13 12:45:02 +01:00
|
|
|
nativeBuildInputs = [
|
2021-01-17 03:09:27 +01:00
|
|
|
cmake pkg-config vala
|
2017-12-13 12:45:02 +01:00
|
|
|
# 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
|
|
|
];
|
2020-01-20 20:02:14 +01:00
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
gtk3 libgee poppler
|
|
|
|
libpthreadstubs librsvg pcre
|
|
|
|
gstreamer
|
|
|
|
gst-plugins-base
|
|
|
|
(gst-plugins-good.override { gtkSupport = true; })
|
|
|
|
gst-libav
|
2021-01-03 10:01:03 +01:00
|
|
|
webkitgtk
|
|
|
|
discount
|
|
|
|
json-glib
|
2020-01-20 20:02:14 +01:00
|
|
|
];
|
2017-03-16 17:21:14 +01:00
|
|
|
|
2021-01-15 06:42:41 +01:00
|
|
|
cmakeFlags = lib.optional stdenv.isDarwin "-DMOVIES=OFF";
|
2015-06-02 13:14:51 +02:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2015-06-02 13:14:51 +02:00
|
|
|
description = "A presenter console with multi-monitor support for PDF files";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://pdfpc.github.io/";
|
2015-06-02 13:14:51 +02:00
|
|
|
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
|
|
|
};
|
|
|
|
|
|
|
|
}
|