1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-12 07:34:36 +00:00
nixpkgs/pkgs/applications/misc/pdfpc/default.nix

43 lines
1.1 KiB
Nix
Raw Normal View History

2019-10-03 19:35:11 +01:00
{ stdenv, fetchFromGitHub, cmake, pkgconfig, vala, gtk3, libgee, fetchpatch
, poppler, libpthreadstubs, gstreamer, gst-plugins-base, gst-plugins-good, gst-libav, librsvg, pcre, gobject-introspection, wrapGAppsHook }:
stdenv.mkDerivation rec {
name = "${product}-${version}";
product = "pdfpc";
2020-08-18 14:52:54 +01:00
version = "4.4.0";
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}";
2020-08-18 14:52:54 +01:00
sha256 = "0vh2r32akvasdrghkaq7ard24r2qncp34jfiyshi3zxabm9bhfaa";
};
nativeBuildInputs = [
cmake pkgconfig vala
# For setup hook
gobject-introspection
2019-10-03 19:35:11 +01:00
wrapGAppsHook
];
buildInputs = [
gtk3 libgee poppler
libpthreadstubs librsvg pcre
gstreamer
gst-plugins-base
(gst-plugins-good.override { gtkSupport = true; })
gst-libav
];
2017-03-16 16:21:14 +00:00
2019-10-29 22:21:22 +00:00
cmakeFlags = stdenv.lib.optional stdenv.isDarwin "-DMOVIES=OFF";
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;
};
}