2025-07-24 13:55:40 +02:00

107 lines
2.7 KiB
Nix

{
lib,
cmake,
exiv2,
extra-cmake-modules,
fetchFromGitLab,
imagemagick,
libarchive,
libdevil,
libraw,
mpv,
pkg-config,
qt6Packages,
resvg,
stdenv,
vips,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "previewqt";
version = "4.0";
src = fetchFromGitLab {
owner = "lspies";
repo = "previewqt";
tag = "v${finalAttrs.version}";
hash = "sha256-wzMo5igLTVxUo3E8X2mRbOTuhW3CS4fISgVntgPbZlY=";
};
nativeBuildInputs = [
cmake
extra-cmake-modules
pkg-config
qt6Packages.wrapQtAppsHook
];
buildInputs = [
exiv2
imagemagick
libarchive
libdevil
libraw
mpv
resvg
vips
]
++ [
qt6Packages.poppler
qt6Packages.qtmultimedia
qt6Packages.qtquick3d
qt6Packages.qtsvg
qt6Packages.qttools
qt6Packages.qtwebengine
];
strictDeps = true;
cmakeFlags = [
(lib.cmakeBool "WITH_FREEIMAGE" false)
];
postInstall = lib.optionalString stdenv.hostPlatform.isDarwin ''
mkdir -p $out/Applications
mv $out/bin/previewqt.app $out/Applications
makeWrapper $out/{Applications/previewqt.app/Contents/MacOS,bin}/previewqt
'';
meta = {
homepage = "https://previewqt.org/";
description = "Qt-based file previewer";
longDescription = ''
PhotoQt is an image viewer that provides a simple and uncluttered
interface. Yet, hidden beneath the surface awaits a large array of
features. Here are some of its main features (not an exhaustive
list). Suggestions for new features are always welcome.
- Support of ImageMagick/GraphicsMagick, Libraw, FreeImage, DevIL,
libvips, Poppler, libarchive, and video files.
- Touchscreen support
- Support for Motion Photos and Apple Live Photos
- Support for (partial) photo spheres and 360 degree panoramas using
equirectangular projection
- Explore images on an interactive map according to their embedded GPS
location
- Chromecast support
- Basic image manipulations
- Convert images between formats
- Keyboard and mouse shortcuts
- Upload images directly to imgur.com
- Set image as wallpaper directly from inside PhotoQt
- Slideshow feature
- Display Exif information (including tagging of faces)
- Detect and display bar codes and QR codes in images
- Thumbnail Cache
- System Tray Usage
- Command Line Options
- Several translations available (help wanted)
- and much more...
'';
changelog = "https://gitlab.com/lspies/previewqt/-/blob/v${finalAttrs.version}/CHANGELOG";
license = lib.licenses.gpl2Plus;
mainProgram = "previewqt";
maintainers = with lib.maintainers; [ wegank ];
platforms = lib.platforms.unix;
};
})