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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

46 lines
1.1 KiB
Nix
Raw Normal View History

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 }:
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-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";
};
nativeBuildInputs = [
cmake pkg-config vala
# For setup hook
gobject-introspection
2019-10-03 19:35:11 +01:00
wrapGAppsHook
];
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
];
2017-03-16 16:21:14 +00:00
2021-01-15 05:42:41 +00: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 16:21:14 +00:00
platforms = platforms.unix;
};
}