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

44 lines
1.2 KiB
Nix
Raw Normal View History

2019-10-03 18:35:11 +00:00
{ stdenv, fetchFromGitHub, cmake, pkgconfig, vala, gtk3, libgee, fetchpatch
, poppler, libpthreadstubs, gstreamer, gst-plugins-base, librsvg, pcre, gobject-introspection, wrapGAppsHook }:
stdenv.mkDerivation rec {
name = "${product}-${version}";
product = "pdfpc";
version = "4.3.4";
2015-11-20 16:07:08 +00:00
src = fetchFromGitHub {
2019-02-06 20:05:53 +00:00
repo = product;
owner = product;
2015-11-20 16:07:08 +00:00
rev = "v${version}";
sha256 = "07aafsm4jzdgpahz83p0ajv40hry7gviyadqi13ahr8xdhhwy2sd";
};
nativeBuildInputs = [
cmake pkgconfig vala
# For setup hook
gobject-introspection
2019-10-03 18:35:11 +00:00
wrapGAppsHook
];
2017-01-09 19:54:48 +00:00
buildInputs = [ gstreamer gst-plugins-base gtk3 libgee poppler
2019-10-03 18:35:11 +00:00
libpthreadstubs librsvg pcre ];
2017-03-16 16:21:14 +00:00
cmakeFlags = stdenv.lib.optionalString stdenv.isDarwin "-DMOVIES=OFF";
2019-10-03 18:35:11 +00:00
patches = [
# Fix build vala 0.46
(fetchpatch {
url = "https://github.com/pdfpc/pdfpc/commit/bbc16b97ecbdcdd22c2dc827a5c0e8b569073312.patch";
sha256 = "0wi1rqcvg65cxnxvmvavcvghqyksnpijq1p91m57jaby3hb0pdcy";
})
];
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;
};
}