biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / games / shticker-book-unwritten / default.nix
blob9edefc9403467817ce8f4b989abcf9cefb79392d
1 { buildFHSEnv, callPackage, lib }:
2 let
4   shticker-book-unwritten-unwrapped = callPackage ./unwrapped.nix { };
6 in buildFHSEnv {
7   name = "shticker_book_unwritten";
8   targetPkgs = pkgs: with pkgs; [
9       alsa-lib
10       libglvnd
11       libpulseaudio
12       shticker-book-unwritten-unwrapped
13       xorg.libX11
14       xorg.libXcursor
15       xorg.libXext
16   ];
17   runScript = "shticker_book_unwritten";
19   meta = with lib; {
20     description = "Minimal CLI launcher for the Toontown Rewritten MMORPG";
21     mainProgram = "shticker_book_unwritten";
22     homepage = "https://github.com/JonathanHelianthicusDoe/shticker_book_unwritten";
23     license = licenses.gpl3Plus;
24     maintainers = [ maintainers.reedrw ];
25     platforms = platforms.linux;
26   };