This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { config, pkgs, ... }: | |
| { | |
| environment.systemPackages = with pkgs; [ | |
| solvespace | |
| ]; | |
| users.users.user = { | |
| uid = 1000; | |
| isNormalUser = true; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # The Inner World runs: | |
| # java -jar mplay.jar media/movies/MOV_000.m4v media/Audio/MOV/MOV_000_EN.mp3 media/Data/Subtitles/MOV_000_EN.srt | |
| # To replace "java" with "mpv", save this script as "java" near "TheInnerWorld.jar" and run | |
| # chmod +x java | |
| # PATH=$(pwd):$PATH $(which java) -jar TheInnerWorld.jar | |
| v="$3" a="$4" s="$5" | |
| exec mpv -fs "$v" --audio-file "$a" --sub-file "$s" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- a/third_party/sol2/sol2/sol.hpp | |
| +++ b/third_party/sol2/sol2/sol.hpp | |
| @@ -7487,10 +7487,87 @@ namespace sol { | |
| template <typename R, typename O, typename... Args> | |
| struct wrapper<R(O:: *)(Args..., ...) const volatile &&> : public member_function_wrapper<R(O:: *)(Args..., ...) const volatile &, R, O, Args...> { | |
| }; | |
| +#ifdef __cpp_noexcept_function_type | |
| + template <typename R, typename O, typename... Args> |
OlderNewer