Files
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

106 lines
2.0 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
cmake,
pkg-config,
wrapGAppsHook3,
wrapQtAppsHook,
gst_all_1,
qtbase,
qtsvg,
qtmultimedia,
qttools,
qtwayland,
zlib,
# only required when using poppler
poppler,
# only required when using mupdf
freetype,
gumbo,
jbig2dec,
mupdf,
openjpeg,
# choose renderer: mupdf or poppler or both (not recommended)
usePoppler ? false,
useMupdf ? true,
useExternalRenderer ? false,
}:
stdenv.mkDerivation rec {
pname = "beamerpresenter";
version = "0.2.6";
src = fetchFromGitHub {
owner = "beamerpresenter";
repo = "BeamerPresenter";
rev = "v${version}";
hash = "sha256-sPeWlPkWOPfLAoAC/+T7nyhPqvoaZg6aMOIVLjMqd2k=";
};
nativeBuildInputs = [
cmake
pkg-config
wrapGAppsHook3
wrapQtAppsHook
];
dontWrapGApps = true;
buildInputs = [
gst_all_1.gst-libav
gst_all_1.gst-plugins-base
gst_all_1.gst-plugins-good
zlib
qtbase
qtsvg
qtmultimedia
qttools
]
++ lib.optionals stdenv.hostPlatform.isLinux [
qtwayland
]
++ lib.optionals useMupdf [
freetype
gumbo
jbig2dec
mupdf
openjpeg
]
++ lib.optionals usePoppler [
poppler
];
cmakeFlags = [
"-DGIT_VERSION=OFF"
"-DUSE_POPPLER=${if usePoppler then "ON" else "OFF"}"
"-DUSE_MUPDF=${if useMupdf then "ON" else "OFF"}"
"-DUSE_QTPDF=OFF"
"-DLINK_MUPDF_THIRD=OFF"
"-DUSE_EXTERNAL_RENDERER=${if useExternalRenderer then "ON" else "OFF"}"
"-DLINK_MUJS=OFF"
"-DLINK_GUMBO=ON"
"-DUSE_TRANSLATIONS=ON"
"-DQT_VERSION_MAJOR=${lib.versions.major qtbase.version}"
];
preFixup = ''
qtWrapperArgs+=("''${gappsWrapperArgs[@]}")
'';
meta = with lib; {
description = "Modular multi screen pdf presentation viewer";
homepage = "https://github.com/beamerpresenter/BeamerPresenter";
license = with licenses; [
agpl3Only
gpl3Plus
];
platforms = platforms.all;
maintainers = with maintainers; [
euxane
dotlambda
];
mainProgram = "beamerpresenter";
};
}