[gaming] Adds warcraft logs app.
This commit is contained in:
@@ -1,9 +1,9 @@
|
|||||||
{ pkgs, local, ... }:
|
{ pkgs, local, ... }:
|
||||||
|
let
|
||||||
# TODO: This is an attempt to patch the desktop file by actually using the old
|
# TODO: This is an attempt to patch the desktop file by actually using the old
|
||||||
# one so I don't have to put in all the options like below. This will generate
|
# one so I don't have to put in all the options like below. This will generate
|
||||||
# the correct file, however, xdg.dataFile."applications/wowup-cf.desktop"
|
# the correct file, however, xdg.dataFile."applications/wowup-cf.desktop"
|
||||||
# doesn't seem to actually overrwite it, even with force = true.
|
# doesn't seem to actually overrwite it, even with force = true.
|
||||||
# let
|
|
||||||
# patched-desktop =
|
# patched-desktop =
|
||||||
# pkgs.runCommand "patched-wowup-cf-desktop"
|
# pkgs.runCommand "patched-wowup-cf-desktop"
|
||||||
# {
|
# {
|
||||||
@@ -14,7 +14,15 @@
|
|||||||
# substitute "$desktop" "$out/wowup-cf.desktop" \
|
# substitute "$desktop" "$out/wowup-cf.desktop" \
|
||||||
# --replace-fail 'Exec=wowup-cf' 'Exec=wowup-cf --enable-features=UseOzonePlatform --ozone-platform=wayland --disable-gpu'
|
# --replace-fail 'Exec=wowup-cf' 'Exec=wowup-cf --enable-features=UseOzonePlatform --ozone-platform=wayland --disable-gpu'
|
||||||
# '';
|
# '';
|
||||||
# in
|
warcraftLogsUploader = pkgs.fetchurl {
|
||||||
|
url = "https://github.com/RPGLogs/Uploaders-warcraftlogs/releases/download/v8.16.56/warcraftlogs-v8.16.56.AppImage";
|
||||||
|
sha256 = "1aypr3ffy6lq0qj64d48c7n54nfs72404xb2kpxsw5slqh66imw6";
|
||||||
|
};
|
||||||
|
warcraftLogsIcon = pkgs.fetchurl {
|
||||||
|
url = "https://assets.rpglogs.com/img/warcraft/favicon.png";
|
||||||
|
sha256 = "0hil7rj7a0bmls0h4w3xmfzcp1gm5yfagbziv1967lmy70ri0bc9";
|
||||||
|
};
|
||||||
|
in
|
||||||
{
|
{
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
# Gaming
|
# Gaming
|
||||||
@@ -49,4 +57,14 @@
|
|||||||
"Game"
|
"Game"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
xdg.desktopEntries.warcraftLogs = {
|
||||||
|
name = "WarcraftLogs";
|
||||||
|
exec = "${pkgs.appimage-run}/bin/appimage-run ${warcraftLogsUploader}";
|
||||||
|
terminal = false;
|
||||||
|
type = "Application";
|
||||||
|
icon = "${warcraftLogsIcon}";
|
||||||
|
comment = "WarcraftLogs uploader";
|
||||||
|
categories = [ "Game" ];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user