about summary refs log tree commit diff
path: root/nixpkgs/pkgs/games/shticker-book-unwritten/default.nix
blob: dd286ce0941593bafbc273e6d4f17a9665ff6471 (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
{ buildFHSUserEnv, callPackage, lib, stdenvNoCC }:
let

  shticker-book-unwritten-unwrapped = callPackage ./unwrapped.nix { };

in buildFHSUserEnv {
  name = "shticker_book_unwritten";
  targetPkgs = pkgs: with pkgs; [
      alsaLib
      xorg.libX11
      xorg.libXext
      libglvnd
      shticker-book-unwritten-unwrapped
  ];
  runScript = "shticker_book_unwritten";

  meta = with lib; {
    description = "Minimal CLI launcher for the Toontown Rewritten MMORPG";
    homepage = "https://github.com/JonathanHelianthicusDoe/shticker_book_unwritten";
    license = licenses.gpl3Plus;
    maintainers = [ maintainers.reedrw ];
    platforms = platforms.linux;
  };
}