summaryrefslogtreecommitdiff
path: root/pkgs/modrinth-app/wrapper.nix
blob: bfb2823ee166e85e4364d529eee9149a8ee0938e (plain)
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
  addOpenGLRunpath,
  copyDesktopItems,
  flite,
  glib-networking,
  jdk17,
  jdk8,
  jdks ? [jdk8 jdk17],
  lib,
  libGL,
  libpulseaudio,
  modrinth-app-unwrapped,
  stdenv,
  symlinkJoin,
  udev,
  wrapGAppsHook,
  xorg,
}:
symlinkJoin {
  name = "modrinth-app-${modrinth-app-unwrapped.version}";

  paths = [modrinth-app-unwrapped];

  buildInputs = [
    glib-networking
    copyDesktopItems
  ];

  nativeBuildInputs = [
    wrapGAppsHook
  ];

  postBuild = let
    libPath = lib.makeLibraryPath [
      flite # narrator support
      libGL
      libpulseaudio
      stdenv.cc.cc.lib

      udev # oshi

      # lwjgl
      xorg.libX11
      xorg.libXcursor
      xorg.libXext
      xorg.libXxf86vm
      xorg.libXrandr
    ];

    binPath = lib.makeBinPath (
      lib.optionals stdenv.isLinux [xorg.xrandr]
    );

    args =
      ["--prefix PATH : ${lib.makeSearchPath "bin/java" jdks}"]
      ++ lib.optionals stdenv.isLinux [
        "--set LD_LIBRARY_PATH ${addOpenGLRunpath.driverLink}/lib:${libPath}"
        "--prefix PATH : ${binPath}"
      ];
  in ''
    gappsWrapperArgs+=(
      ${lib.concatStringsSep "\n" args}
    )

    wrapGAppsHook
  '';

  postInstall = ''
    copyDesktopItems
  '';

  inherit (modrinth-app-unwrapped) meta;
}
Software created with 💖