about summary refs log tree commit diff
path: root/pkgs/tools/games/minecraft/optifine/default.nix
blob: b7ca74822c40de75e4ee3e52c64cc1caf55cde9e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{ lib
, stdenv
, fetchurl
, makeWrapper
, jre }:

stdenv.mkDerivation rec {
  pname = "optifine";
  version = "1.18.1_HD_U_H4";

  src = fetchurl {
    url = "https://optifine.net/download?f=OptiFine_${version}.jar";
    sha256 = "325168569b21a2dcde82999876f69ec9d8af75202a7021691f2abede4d81dcec";
  };

  dontUnpack = true;

  nativeBuildInputs = [ jre makeWrapper ];

  installPhase = ''
    mkdir -p $out/{bin,lib/optifine}
    cp $src $out/lib/optifine/optifine.jar

    makeWrapper ${jre}/bin/java $out/bin/optifine \
      --add-flags "-jar $out/lib/optifine/optifine.jar"
  '';

  meta = with lib; {
    homepage = "https://optifine.net/";
    description = "A Minecraft optimization mod";
    longDescription = ''
      OptiFine is a Minecraft optimization mod.
      It allows Minecraft to run faster and look better with full support for HD textures and many configuration options.
    '';
    license = licenses.unfree;
    maintainers = [ maintainers.ivar ];
    platforms = platforms.unix;
  };
}