| 30 May 2026 |
Austin Horstman | i'm testing some changes | 16:30:25 |
Austin Horstman | * there are some build issues with sparkle | 16:31:08 |
samasaur | In reply to @reckenrode:matrix.org
Anyone getting this warning on the nix-darwin 26.05 branch?
trace: warning: reckenrode profile: programs.man.generateCaches has no effect when programs.man.package is null
FYI that branch exists but the PR to make it actually a stable release branch hasn't gone in yet so it is currently pointing to the exact same commit as master | 16:35:44 |
Austin Horstman | got it to build | 16:41:52 |
Austin Horstman |  Download image.png | 16:41:56 |
Matt Sturgeon | Now I'm curious if any of the issues you identified also apply to the other minecraft launchers already packaged in nixpkgs π prismlauncher was originally a polymc fork, for example | 17:09:33 |
Matt Sturgeon | * Now I'm curious if any of the issues you identified also apply to the other minecraft launchers already packaged in nixpkgs π
prismlauncher was originally a polymc fork; pandora-launcher was recently merged, etc | 17:14:41 |
Matt Sturgeon | * Now I'm curious if any of the issues you identified also apply to the other minecraft launchers already packaged in nixpkgs π
prismlauncher was originally a polymc fork; pandora-launcher was recently merged (but doesn't define meta.platforms), etc | 17:16:06 |
Matt Sturgeon | * Now I'm curious if any of the issues you identified also apply to the other minecraft launchers already packaged in nixpkgs π
prismlauncher was originally a polymc fork so may be similar; pandora-launcher was recently merged (but doesn't define meta.platforms), etc | 17:18:37 |
| 1 Jun 2026 |
eveeifyeve | Has anyone experienced any freezing issues with MacOS 25.5? Because I have disabled most things and it still freezes. | 08:54:44 |
eveeifyeve | * Has anyone experienced any freezing issues with MacOS 25.5? Because I have disabled most things and it still freezes with my config. | 08:55:25 |
eveeifyeve | * Has anyone experienced any freezing issues with MacOS 25.5 with their config? Because I have disabled most things and it still freezes with my config. | 08:57:24 |
eveeifyeve | Found out the root cause, It seems to be an issue with nix optimise-store. | 09:29:44 |
eveeifyeve | * I think I found out the root cause, It seems to be an issue with nix optimise-store. | 09:32:57 |
eveeifyeve | * I think I found out the root cause, It seems to be an issue with nix auto-optimise-store. | 09:33:05 |
eveeifyeve | * I think I found out the root cause, It seems to be an issue with nix optimise automatic. | 09:34:30 |
eveeifyeve | * I think I found out the root cause, It seems to be an issue with nix.optimise.automatic. | 09:34:39 |
| lcenchew joined the room. | 09:40:42 |
| Paul Schrater joined the room. | 11:22:56 |
| 2 Jun 2026 |
| @mmahut:matrix.org left the room. | 10:00:55 |
| Pol joined the room. | 16:12:58 |
Pol | Hello, I'm looking for someone who can help me unblocking the situation with pythonPackages.pyobjus, see the logs at https://github.com/NixOS/nixpkgs/pull/527067 | 16:14:37 |
Pol | I don't have a Darwin machine to fix it :( | 16:15:39 |
Pol | * Hello, I'm looking for someone who can help me unblocking the situation with pythonPackages.pyobjus, introduced in https://github.com/NixOS/nixpkgs/pull/527067, the logs are also available. | 16:21:03 |
Sarah Clark | Looking | 16:26:57 |
Pol | Raw guess, probably doing this might help:
preCheck = ''
rm -rf pyobjus
make test_lib
'';
nativeCheckInputs = [
clang
pytestCheckHook
];
| 16:29:24 |
Sarah Clark | Use
preCheck = ''
rm -rf pyobjus
make test_lib
SITE_PACKAGES=$(find $out -name "site-packages" -type d | head -1)
mkdir -p $SITE_PACKAGES/objc_classes
mv objc_classes/test $SITE_PACKAGES/objc_classes
'';
| 18:13:50 |
Pol | Should we remove those after test are done ? | 18:15:21 |
Sarah Clark | I would think so | 18:15:33 |
Pol | So,
postCheck = ''
rm -rf $SITE_PACKAGES/objc_classes/test
'';
Is this would be enough ?
| 18:16:32 |