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

36 lines
1 KiB
Nix
Raw Normal View History

2016-11-17 22:50:33 +01:00
{ stdenv, fetchFromGitHub, cmake, makeWrapper, pkgconfig, vala, gtk3, libgee
2017-03-16 17:21:14 +01:00
, poppler, libpthreadstubs, gstreamer, gst-plugins-base, librsvg, pcre }:
stdenv.mkDerivation rec {
name = "${product}-${version}";
product = "pdfpc";
2017-07-04 11:34:32 +02:00
version = "4.0.7";
2015-11-20 17:07:08 +01:00
src = fetchFromGitHub {
repo = "pdfpc";
owner = "pdfpc";
rev = "v${version}";
2017-07-04 11:34:32 +02:00
sha256 = "00qfmmk8h762p53z46g976z7j4fbxyi16w5axzsv1ymvdq95ds8c";
};
2017-01-09 20:54:48 +01:00
nativeBuildInputs = [ cmake pkgconfig vala ];
buildInputs = [ gstreamer gst-plugins-base gtk3 libgee poppler
2017-03-16 17:21:14 +01:00
libpthreadstubs makeWrapper librsvg pcre ];
cmakeFlags = stdenv.lib.optionalString stdenv.isDarwin "-DMOVIES=OFF";
postInstall = ''
wrapProgram $out/bin/pdfpc \
--set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE"
'';
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 17:21:14 +01:00
platforms = platforms.unix;
};
}