4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
42 lines
889 B
Nix
42 lines
889 B
Nix
{ lib, stdenv
|
|
, fetchurl
|
|
, jdk8
|
|
, unzip
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "xmage";
|
|
version = "1.4.42V6";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/magefree/mage/releases/download/xmage_1.4.42V6/xmage_${version}.zip";
|
|
sha256 = "14s4885ldi0rplqmab5m775plsqmmm0m89j402caiqm2q9mzvkhd";
|
|
};
|
|
|
|
preferLocalBuild = true;
|
|
|
|
unpackPhase = ''
|
|
${unzip}/bin/unzip $src
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp -rv ./* $out
|
|
|
|
cat << EOS > $out/bin/xmage
|
|
exec ${jdk8}/bin/java -Xms256m -Xmx512m -XX:MaxPermSize=384m -XX:+UseConcMarkSweepGC -XX:+CMSClassUnloadingEnabled -jar $out/mage-client/lib/mage-client-1.4.42.jar
|
|
EOS
|
|
|
|
chmod +x $out/bin/xmage
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Magic Another Game Engine";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ matthiasbeyer ];
|
|
homepage = "http://xmage.de/";
|
|
};
|
|
|
|
}
|
|
|