nixpkgs/pkgs/applications/misc/pdfpc/default.nix

47 lines
1.2 KiB
Nix
Raw Normal View History

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