Created
August 23, 2021 07:32
-
-
Save Intey/ad8ac5bace2943228e5db0a5a54b64ad to your computer and use it in GitHub Desktop.
Nix shell with ROS for development
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
with import (builtins.fetchTarball https://github.com/lopsided98/nix-ros-overlay/archive/master.tar.gz) {}; | |
# when we try `with rosPackages` and specify dist in paths, we get error: | |
# with repl we can find needed packages | |
with rosPackages.noetic; | |
mkShell { | |
buildInputs = [ | |
gtest | |
cmake | |
ninja | |
(buildEnv { | |
name = "ros"; | |
paths = [ | |
rosbash | |
roscpp | |
]; | |
}) | |
]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment