dzgui-nix/package/default.nix

82 lines
1.8 KiB
Nix
Raw Normal View History

2024-10-01 12:10:35 -03:00
{
lib,
stdenv,
pkgs,
2024-10-01 12:10:35 -03:00
fetchFromGitHub,
makeWrapper,
curl,
jq,
python3,
wmctrl,
xdotool,
gnome,
gobject-introspection,
wrapGAppsHook,
}:
stdenv.mkDerivation rec {
pname = "dzgui";
2024-11-10 22:16:37 -03:00
version = "5.5.0";
src = fetchFromGitHub {
owner = "aclist";
repo = "dztui";
2024-11-10 22:16:37 -03:00
rev = "bae6a57e1ee5660a07e3a3c326ec68617b831d31";
sha256 = "sha256-x5GSyrbEZoru5p70QVRSFx52Njkhvtg/+qc94MqpOmo=";
};
postPatch = ''
sed -i 's@/usr/bin/zenity@zenity@g' dzgui.sh
sed -i '/ check_map_count/d' dzgui.sh
sed -i '/ check_version/d' dzgui.sh
sed -i '/ write_desktop_file >/d' dzgui.sh
'';
nativeBuildInputs = [
makeWrapper
gobject-introspection
wrapGAppsHook
];
runtimeDeps = [
curl
jq
2024-10-01 12:10:35 -03:00
(python3.withPackages (p: with p; [ pygobject3 ]))
wmctrl
xdotool
2024-11-30 13:03:56 -03:00
# TODO: remove 24.05 compatibility when it goes EOL
(pkgs.zenity or gnome.zenity)
## Here we don't declare steam as a dependency because
## we could either use the native or flatpack version
## and also so this does not become a non-free package
# steam
];
installPhase = ''
install -DT dzgui.sh $out/bin/dzgui
install -DT ${./dzgui.desktop} $out/share/applications/dzgui.desktop
install -DT images/dzgui $out/share/icons/hicolor/256x256/apps/dzgui.png
'';
preFixup = ''
gappsWrapperArgs+=(
--prefix PATH ':' ${lib.makeBinPath runtimeDeps}
)
'';
meta = with lib; {
homepage = "https://github.com/pronovic/banner";
description = "DayZ TUI/GUI server browser";
license = licenses.gpl3;
longDescription = ''
DZGUI allows you to connect to both official and modded/community DayZ
servers on Linux and provides a graphical interface for doing so.
'';
platforms = platforms.all;
};
}