mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
37 lines
1.3 KiB
Nix
37 lines
1.3 KiB
Nix
{ lib
|
|
, appimageTools
|
|
, fetchurl
|
|
}:
|
|
|
|
let
|
|
pname = "fflogs";
|
|
version = "8.13.5";
|
|
src = fetchurl {
|
|
url = "https://github.com/RPGLogs/Uploaders-fflogs/releases/download/v${version}/fflogs-v${version}.AppImage";
|
|
hash = "sha256-xEOTEU7biTw/bgmGs99Nobo8tYHnIkLghddX4BDY/o8=";
|
|
};
|
|
extracted = appimageTools.extractType2 { inherit pname version src; };
|
|
in
|
|
appimageTools.wrapType2 {
|
|
inherit pname version src;
|
|
|
|
extraInstallCommands = ''
|
|
mkdir -p $out/share/applications
|
|
cp -r ${extracted}/usr/share/icons $out/share/
|
|
chmod -R +w $out/share/
|
|
mv $out/share/icons/hicolor/0x0 $out/share/icons/hicolor/512x512 # https://github.com/electron-userland/electron-builder/issues/5294
|
|
cp ${extracted}/fflogs.desktop $out/share/applications/
|
|
sed -i 's@^Exec=AppRun --no-sandbox@Exec=fflogs@g' $out/share/applications/fflogs.desktop
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Application for uploading Final Fantasy XIV combat logs to fflogs.com";
|
|
homepage = "https://www.fflogs.com/client/download";
|
|
downloadPage = "https://github.com/RPGLogs/Uploaders-fflogs/releases/latest";
|
|
license = licenses.unfree; # no license listed
|
|
mainProgram = "fflogs";
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ sersorrel ];
|
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
|
};
|
|
}
|