depot/third_party/nixpkgs/pkgs/applications/graphics/hdrmerge/default.nix

81 lines
1.5 KiB
Nix

{
lib,
mkDerivation,
fetchpatch,
fetchFromGitHub,
cmake,
qtbase,
wrapQtAppsHook,
libraw,
exiv2,
zlib,
alglib,
pkg-config,
makeDesktopItem,
copyDesktopItems,
}:
mkDerivation rec {
pname = "hdrmerge";
version = "0.5.0-unstable-2024-08-02";
src = fetchFromGitHub {
owner = "jcelaya";
repo = "hdrmerge";
rev = "e2a46f97498b321b232cc7f145461212677200f1";
hash = "sha256-471gJtF9M36pAId9POG8ZIpNk9H/157EdHqXSAPlhN0=";
};
nativeBuildInputs = [
cmake
pkg-config
wrapQtAppsHook
copyDesktopItems
];
buildInputs = [
qtbase
libraw
exiv2
zlib
alglib
];
cmakeFlags = [
"-DALGLIB_DIR:PATH=${alglib}"
];
CXXFLAGS = [
# GCC 13: error: 'uint32_t' does not name a type
"-include cstdint"
];
desktopItems = [
(makeDesktopItem {
name = "HDRMerge";
genericName = "HDR raw image merge";
desktopName = "HDRMerge";
comment = meta.description;
icon = "hdrmerge";
exec = "hdrmerge %F";
categories = [ "Graphics" ];
mimeTypes = [
"image/x-dcraw"
"image/x-adobe-dng"
];
terminal = false;
})
];
postInstall = ''
install -Dm444 ../data/images/icon.png $out/share/icons/hicolor/128x128/apps/hdrmerge.png
'';
meta = with lib; {
homepage = "https://github.com/jcelaya/hdrmerge";
description = "Combines two or more raw images into an HDR";
mainProgram = "hdrmerge";
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = [ maintainers.paperdigits ];
};
}