summary refs log blame commit diff
path: root/pkgs/games/shticker-book-unwritten/default.nix
blob: 7dbd5c257e89eb66fd7526cb14bdb7f0070f3fa4 (plain) (tree)
1
2
3
4
5
6
7
8
9







                                                                      
              
                 
                     













                                                                                    
{ buildFHSUserEnv, callPackage, lib, stdenvNoCC }:
let

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

in buildFHSUserEnv {
  name = "shticker_book_unwritten";
  targetPkgs = pkgs: with pkgs; [
      alsa-lib
      xorg.libX11
      xorg.libXcursor
      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;
  };
}