2022-09-11 01:13:25 +03:00
|
|
|
{ buildFHSUserEnv, callPackage, lib, openssl }:
|
2021-03-08 17:11:03 +03:00
|
|
|
let
|
|
|
|
|
2022-09-11 01:13:25 +03:00
|
|
|
shticker-book-unwritten-unwrapped = callPackage ./unwrapped.nix {
|
|
|
|
inherit openssl;
|
|
|
|
};
|
2021-03-08 17:11:03 +03:00
|
|
|
|
|
|
|
in buildFHSUserEnv {
|
|
|
|
name = "shticker_book_unwritten";
|
|
|
|
targetPkgs = pkgs: with pkgs; [
|
2021-06-10 05:57:09 +03:00
|
|
|
alsa-lib
|
2021-12-04 21:44:17 +03:00
|
|
|
libglvnd
|
|
|
|
libpulseaudio
|
|
|
|
shticker-book-unwritten-unwrapped
|
2021-03-08 17:11:03 +03:00
|
|
|
xorg.libX11
|
2021-04-30 05:32:32 +03:00
|
|
|
xorg.libXcursor
|
2021-03-08 17:11:03 +03:00
|
|
|
xorg.libXext
|
|
|
|
];
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|