2023-04-11 12:52:27 +02:00
|
|
|
{ buildFHSEnv, callPackage, lib }:
|
2021-03-08 15:11:03 +01:00
|
|
|
let
|
|
|
|
|
2023-01-13 01:12:33 +01:00
|
|
|
shticker-book-unwritten-unwrapped = callPackage ./unwrapped.nix { };
|
2021-03-08 15:11:03 +01:00
|
|
|
|
2023-04-11 12:52:27 +02:00
|
|
|
in buildFHSEnv {
|
2021-03-08 15:11:03 +01:00
|
|
|
name = "shticker_book_unwritten";
|
|
|
|
targetPkgs = pkgs: with pkgs; [
|
2021-06-10 04:57:09 +02:00
|
|
|
alsa-lib
|
2021-12-04 19:44:17 +01:00
|
|
|
libglvnd
|
|
|
|
libpulseaudio
|
|
|
|
shticker-book-unwritten-unwrapped
|
2021-03-08 15:11:03 +01:00
|
|
|
xorg.libX11
|
2021-04-30 04:32:32 +02:00
|
|
|
xorg.libXcursor
|
2021-03-08 15:11:03 +01:00
|
|
|
xorg.libXext
|
|
|
|
];
|
|
|
|
runScript = "shticker_book_unwritten";
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Minimal CLI launcher for the Toontown Rewritten MMORPG";
|
2024-03-19 03:14:51 +01:00
|
|
|
mainProgram = "shticker_book_unwritten";
|
2021-03-08 15:11:03 +01:00
|
|
|
homepage = "https://github.com/JonathanHelianthicusDoe/shticker_book_unwritten";
|
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
maintainers = [ maintainers.reedrw ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|