716f4ab3a4
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/pdfpc/versions. These checks were done: - built on NixOS - ran ‘/nix/store/dvwwb2myl9351rzj9gf2p3x1731d9vnc-pdfpc-4.1.1/bin/pdfpc -h’ got 0 exit code - ran ‘/nix/store/dvwwb2myl9351rzj9gf2p3x1731d9vnc-pdfpc-4.1.1/bin/pdfpc --help’ got 0 exit code - ran ‘/nix/store/dvwwb2myl9351rzj9gf2p3x1731d9vnc-pdfpc-4.1.1/bin/.pdfpc-wrapped -h’ got 0 exit code - ran ‘/nix/store/dvwwb2myl9351rzj9gf2p3x1731d9vnc-pdfpc-4.1.1/bin/.pdfpc-wrapped --help’ got 0 exit code - found 4.1.1 with grep in /nix/store/dvwwb2myl9351rzj9gf2p3x1731d9vnc-pdfpc-4.1.1 - directory tree listing: https://gist.github.com/88ef2cda6a77852e5d7541ebd43e4fec
40 lines
1.1 KiB
Nix
40 lines
1.1 KiB
Nix
{ stdenv, fetchFromGitHub, cmake, makeWrapper, pkgconfig, vala, gtk3, libgee
|
|
, poppler, libpthreadstubs, gstreamer, gst-plugins-base, librsvg, pcre, gobjectIntrospection }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "${product}-${version}";
|
|
product = "pdfpc";
|
|
version = "4.1.1";
|
|
|
|
src = fetchFromGitHub {
|
|
repo = "pdfpc";
|
|
owner = "pdfpc";
|
|
rev = "v${version}";
|
|
sha256 = "1yjh9rx49d24wlwg44r2a6b5scybp8l1fi9wyf05sig6zfziw1mm";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake pkgconfig vala
|
|
# For setup hook
|
|
gobjectIntrospection
|
|
];
|
|
buildInputs = [ gstreamer gst-plugins-base gtk3 libgee poppler
|
|
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 ];
|
|
platforms = platforms.unix;
|
|
};
|
|
|
|
}
|