24 lines
938 B
Nix
24 lines
938 B
Nix
# Automatically generated by: ros2nix --output-as-nix-pkg-name --fetch --flake --distro jazzy --output-dir .nix
|
|
{ lib, buildRosPackage, fetchFromGitHub, ament-cmake, geometry-msgs, launch, launch-ros, rclcpp, sensor-msgs }:
|
|
buildRosPackage rec {
|
|
pname = "ros-jazzy-cartesian-controller-utilities";
|
|
version = "0.1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "solid-sinusoid";
|
|
repo = "cartesian_controllers";
|
|
rev = "1218ab5e7153b9aa7a3cd687908671d9f900a838";
|
|
sha256 = "1h0izk742gg4k3v4s8d3c1mj3hqxph390adfccyixggb511c8nvj";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
sourceRoot = "${src.name}/cartesian_controller_utilities/";
|
|
buildInputs = [ ament-cmake ];
|
|
propagatedBuildInputs = [ geometry-msgs launch launch-ros rclcpp sensor-msgs ];
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
meta = {
|
|
description = "Make the spacemouse a teach device for contact-based teleoperation";
|
|
license = with lib.licenses; [ bsd3 ];
|
|
};
|
|
}
|