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

34 lines
988 B
Nix
Raw Normal View History

2016-08-21 16:14:59 +00:00
{ stdenv, fetchFromGitHub, cmake, makeWrapper, pkgconfig, vala_0_26, gtk3, libgee
2015-11-20 16:07:08 +00:00
, poppler, libpthreadstubs, gstreamer, gst-plugins-base, librsvg }:
stdenv.mkDerivation rec {
name = "${product}-${version}";
product = "pdfpc";
2016-02-15 16:34:52 +00:00
version = "4.0.2";
2015-11-20 16:07:08 +00:00
src = fetchFromGitHub {
repo = "pdfpc";
owner = "pdfpc";
rev = "v${version}";
2016-02-15 16:34:52 +00:00
sha256 = "0151i9msagcqcfaddgd1vkmman0qgqy6s3714sqas568r4r9ngdk";
};
nativeBuildInputs = [ cmake pkgconfig ];
2016-08-21 16:14:59 +00:00
buildInputs = [ gstreamer gst-plugins-base vala_0_26 gtk3 libgee poppler
libpthreadstubs makeWrapper librsvg ];
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 ];
platforms = platforms.linux;
};
}