Installation
System wide:
{
environment.systemPackages = with nix-casks.packages.${system}; [
webots # Cyberbotics Webots Robot Simulator
];
} Home Manager:
{
home.packages = with nix-casks.packages.${system}; [
webots # Cyberbotics Webots Robot Simulator
];
} Package Definition
{
"pname": "webots",
"version": "R2025a",
"src": {
"url": "https://github.com/cyberbotics/webots/releases/download/R2025a/webots-R2025a.dmg",
"sha256": "484f6cc84ca794dd33e410b0bfc030132cc5b163a882c350c1d293d06d87584f"
},
"installPhase": [
"mkdir -p \"$out/Applications/Webots.app\" && cp -r \"Webots.app\" \"$out/Applications\""
],
"meta": {
"description": "Open source desktop application used to simulate robots",
"homepage": "https://www.cyberbotics.com/"
}
}