mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-10 01:42:24 +03:00

Everything uses Python 3 nowadays and the python = python3 override is only needed for ROS 1 rosdep packages. Move this override to ros1-overlay.nix, and make sure to use python3 explicitly everywhere else.
6 lines
181 B
Nix
6 lines
181 B
Nix
{ makeSetupHook, python3 }:
|
|
|
|
makeSetupHook {
|
|
name = "ament-cmake-core-setup-hook";
|
|
substitutions.python_executable = python3.pythonOnBuildForHost.interpreter;
|
|
} ./setup-hook.sh
|