hdrmerge: fix desktop entry file, install icons

This commit is contained in:
D Anzorge 2022-03-09 17:48:30 +01:00
parent f02a438ae4
commit a4ac9a8b49

View file

@ -55,17 +55,15 @@ mkDerivation rec {
desktopName = "HDRMerge"; desktopName = "HDRMerge";
comment = meta.description; comment = meta.description;
icon = "hdrmerge"; icon = "hdrmerge";
exec = "@out@/bin/hdrmerge -F"; exec = "hdrmerge %F";
categories = [ "Graphics" ]; categories = [ "Graphics" ];
mimeTypes = [ "image/x-dcraw" "image/x-adobe-dng" ]; mimeTypes = [ "image/x-dcraw" "image/x-adobe-dng" ];
terminal = false; terminal = false;
}) })
]; ];
postInstallPhase = '' postInstall = ''
# Make a desktop item install -Dm444 ../data/images/icon.png $out/share/icons/hicolor/128x128/apps/hdrmerge.png
mkdir -p $out/share/icons/ $out/share/applications/
cp ../data/images/logo.png $out/share/icons/hdrmerge.png
''; '';
meta = with lib; { meta = with lib; {