-
-
Notifications
You must be signed in to change notification settings - Fork 14.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ciscoPacketTracer8: fix script modules #356289
ciscoPacketTracer8: fix script modules #356289
Conversation
533e674
to
2788485
Compare
2788485
to
98f30f6
Compare
cc @griffi-gh @cooparo @ob7 @NemoSomnium @Guccel @Anifyuli @doolphin @sjcp7 for being involved in #291445. You can test this PR with this command, as usual you may need to download the packet tracer deb file and rename it to what you see in the error message:
The "Required Script Modules do not appear to be running. Please reinstall Cisco Packet Tracer." and the "Unable to deserialize." message boxes should be gone, and you should be able to see the script modules loaded. IoT devices also seem to work. |
Minor complaint but the way the the only thing i was able to come up with is
ciscoPacketTracer8' = (callPackage ./ciscoPacketTracer8.nix {
requireFile = _: fetchurl {
url = "https://.../cisco/Packet_Tracer822_amd64_signed.deb";
sha256 = "6cd2b8891df92d2cad8b6fdc47480fc089de085c4f3fe95eb80d5450a2a7f72d";
};
}); |
Thanks for feedback! I'm not sure what's the best way to allow overriding, wrapping Edit: what about putting |
That looks normal to me as I see that cursor everywhere on my own system. I haven't looked into cursor themes, but could be that packet tracer is trying to use some other cursor icon that is not in your cursor theme. Do you also experience it with PT on master? |
2647141
to
a1ee67c
Compare
tested this out. seems to work well. also seems to fix some issues with certain pka files causing PT to crash. ( haven't tested extensively, just surface level ) |
I'm not sure why ofborg-eval is failing, maybe rebasing to master will help. |
a1ee67c
to
0012692
Compare
0012692
to
a67194f
Compare
Fixed the merge conflict caused by #342352 |
(another common pattern for packages using FHSenv is moving |
Closes #291445
As the bug got introduced with a refactor that moved away from
buildFHSEnv
, the only fix I found is moving back to it.This PR is mostly a revert of 2920b6f with additional refactors and the addition of
wayland
for newer versions of packet tracer.Things done
nix.conf
? (See Nix manual)sandbox = relaxed
sandbox = true
nix-shell -p nixpkgs-review --run "nixpkgs-review rev HEAD"
. Note: all changes have to be committed, also see nixpkgs-review usage./result/bin/
)Add a 👍 reaction to pull requests you find important.