From 23c7c45f04087a678e387baf7f834b07a08e90d9 Mon Sep 17 00:00:00 2001 From: Michal Sojka Date: Sun, 15 Sep 2024 19:30:18 +0200 Subject: [PATCH] Don't allow overriding env. variables This would probably lead to weird errors, which I'm not interested in dealing with. --- flake.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index c1c3d23..7945bdc 100644 --- a/flake.nix +++ b/flake.nix @@ -70,8 +70,8 @@ superflore ]; makeWrapperArgs = [ - "--set-default ROS_HOME ${rosdep-cache}" - "--set-default ROSDEP_SOURCE_PATH ${rosdistro}/rosdep/sources.list.d" + "--set ROS_HOME ${rosdep-cache}" + "--set ROSDEP_SOURCE_PATH ${rosdistro}/rosdep/sources.list.d" "--set ROSDISTRO_INDEX_URL file://${rosdistro}/index-v4.yaml" "--set ROS_OS_OVERRIDE nixos" ];