You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
673 B
Nix

{ stdenv, xorg, jdk, mesa, openal, ... }:
stdenv.mkDerivation {
name = "atlauncher";
src = ./ATLauncher.jar;
buildInputs = with xorg; [ libX11 libXext libXcursor libXrandr libXxf86vm jdk mesa openal ];
buildCommand = ''
mkdir -pv $out/libexec/ $out/bin/
cp -v $src $out/libexec/ATLauncher.jar
RESULT=
for x in $nativeBuildInputs; do
RESULT=$x/lib/:$RESULT
done
cat <<EOF > $out/bin/atlauncher
#!${stdenv.shell}
export LD_LIBRARY_PATH=$RESULT
export GAME_LIBRARY_PATH=$RESULT
exec ${jdk}/bin/java -jar $out/libexec/ATLauncher.jar --working-dir=/home/sven/.atlauncher
EOF
chmod +x $out/bin/atlauncher
'';
}