mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
34 lines
964 B
Nix
34 lines
964 B
Nix
{ stdenv, fetchFromGitHub, cmake, makeWrapper, pkgconfig, vala, gtk3, libgee
|
|
, poppler, libpthreadstubs, gstreamer, gst-plugins-base, librsvg }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "${product}-${version}";
|
|
product = "pdfpc";
|
|
version = "4.0.5";
|
|
|
|
src = fetchFromGitHub {
|
|
repo = "pdfpc";
|
|
owner = "pdfpc";
|
|
rev = "v${version}";
|
|
sha256 = "13spngkp0lq2qlw4mxsngx4ckr201axzn5ppjax0bhlckirvzr2s";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake pkgconfig vala ];
|
|
buildInputs = [ gstreamer gst-plugins-base 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;
|
|
};
|
|
|
|
}
|