Package dzgui

This commit is contained in:
Leonardo Eugênio 2023-01-19 00:03:04 -03:00
parent 40361be84d
commit 25224abafb
2 changed files with 50 additions and 0 deletions

View File

@ -2,4 +2,5 @@
# You can build them using 'nix build .#example' or (legacy) 'nix-build -A example'
{ pkgs }: {
dzgui = pkgs.callPackage ./dzgui.nix { };
}

49
pkgs/dzgui.nix Normal file
View File

@ -0,0 +1,49 @@
{ pkgs, lib, stdenv, fetchFromGitHub, makeWrapper }:
stdenv.mkDerivation rec {
pname = "dzgui";
version = "0.1";
src = fetchFromGitHub {
owner = "aclist";
repo = pname;
rev = "d1c0de75ee8ded449ab1c5a293e91891e5f78346";
sha256 = "sha256-Jy6vHWA0u+4yonsJlHgJYvtceYT6lHeWeaX0fawETVo=";
};
nativeBuildInputs = [ makeWrapper ];
runtimeDeps = with pkgs; [
curl
jq
python3
steam
wmctrl
gnome.zenity
];
patchPhase = ''
sed -i \
-e 's|/usr/bin/zenity|${pkgs.gnome.zenity}/bin/zenity|' \
-e 's|2>/dev/null||' \
dzgui.sh
'';
installPhase = ''
install -Dm777 -T dzgui.sh $out/bin/.dzgui-unwrapped_
makeWrapper $out/bin/.dzgui-unwrapped_ $out/bin/dzgui \
--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;
};
}