mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
98 lines
2.4 KiB
Nix
98 lines
2.4 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
installShellFiles,
|
|
fetchFromGitHub,
|
|
freetype,
|
|
nix-update-script,
|
|
gumbo,
|
|
harfbuzz,
|
|
jbig2dec,
|
|
mujs,
|
|
mupdf,
|
|
openjpeg,
|
|
qt6,
|
|
}:
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "sioyek";
|
|
version = "2.0.0-unstable-2024-09-29";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ahrm";
|
|
repo = "sioyek";
|
|
rev = "965499f0acbb1faf4b443b6bca30e7078f944b52";
|
|
hash = "sha256-MOqWitXnYn8efk2LSeAOhmpcxGn6hbvjXbNTXEDdxIM=";
|
|
};
|
|
|
|
buildInputs =
|
|
[
|
|
gumbo
|
|
harfbuzz
|
|
jbig2dec
|
|
mujs
|
|
mupdf
|
|
openjpeg
|
|
qt6.qt3d
|
|
qt6.qtbase
|
|
qt6.qtspeech
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isLinux [ qt6.qtwayland ]
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [ freetype ];
|
|
|
|
nativeBuildInputs = [
|
|
installShellFiles
|
|
qt6.qmake
|
|
qt6.wrapQtAppsHook
|
|
];
|
|
|
|
qmakeFlags = lib.optionals stdenv.hostPlatform.isDarwin [ "CONFIG+=non_portable" ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace pdf_viewer_build_config.pro \
|
|
--replace-fail "-lmupdf-threads" "-lgumbo -lharfbuzz -lfreetype -ljbig2dec -ljpeg -lopenjp2" \
|
|
--replace-fail "-lmupdf-third" ""
|
|
substituteInPlace pdf_viewer/main.cpp \
|
|
--replace-fail "/usr/share/sioyek" "$out/share" \
|
|
--replace-fail "/etc/sioyek" "$out/etc"
|
|
'';
|
|
|
|
postInstall =
|
|
if stdenv.isDarwin then
|
|
''
|
|
cp -r pdf_viewer/shaders sioyek.app/Contents/MacOS/shaders
|
|
cp pdf_viewer/{prefs,prefs_user,keys,key_user}.config tutorial.pdf sioyek.app/Contents/MacOS/
|
|
|
|
mkdir -p $out/Applications $out/bin
|
|
cp -r sioyek.app $out/Applications
|
|
ln -s $out/Applications/sioyek.app/Contents/MacOS/sioyek $out/bin/sioyek
|
|
''
|
|
else
|
|
''
|
|
install -Dm644 tutorial.pdf $out/share/tutorial.pdf
|
|
cp -r pdf_viewer/shaders $out/share/
|
|
install -Dm644 -t $out/etc/ pdf_viewer/{keys,prefs}.config
|
|
installManPage resources/sioyek.1
|
|
'';
|
|
|
|
passthru.updateScript = nix-update-script {
|
|
extraArgs = [
|
|
"--version"
|
|
"branch=development"
|
|
];
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://sioyek.info/";
|
|
description = "PDF viewer designed for research papers and technical books";
|
|
mainProgram = "sioyek";
|
|
changelog = "https://github.com/ahrm/sioyek/releases/tag/v${finalAttrs.version}";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [
|
|
podocarp
|
|
stephen-huan
|
|
xyven1
|
|
];
|
|
platforms = platforms.unix;
|
|
};
|
|
})
|