xpra: fix application icon location

This makes the icon visible in desktop environments. (Tested in GNOME).

authored by Bjørn Forsman and committed by ehmry 06e2c42a 19d9ac28

+6 -1
+6 -1
pkgs/tools/X11/xpra/default.nix
··· 186 186 ) 187 187 ''; 188 188 189 - # append module paths to xorg.conf 190 189 postInstall = '' 190 + # append module paths to xorg.conf 191 191 cat ${xorgModulePaths} >> $out/etc/xpra/xorg.conf 192 + 193 + # make application icon visible to desktop environemnts 194 + icon_dir="$out/share/icons/hicolor/64x64/apps" 195 + mkdir -p "$icon_dir" 196 + ln -sr "$out/share/icons/xpra.png" "$icon_dir" 192 197 ''; 193 198 194 199 doCheck = false;