22 lines
821 B
Nix
22 lines
821 B
Nix
# Automatically generated by: ros2nix --distro jazzy --output-dir repos/nix --output-as-nix-pkg-name --fetch
|
|
{ lib, buildRosPackage, fetchFromGitHub, cartesian-controller-base, controller-interface, rclcpp }:
|
|
buildRosPackage rec {
|
|
pname = "ros-jazzy-cartesian-motion-controller";
|
|
version = "0.0.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "solid-sinusoid";
|
|
repo = "cartesian_controllers";
|
|
rev = "9ade57d3ef7f1bf6d514551e710110b014b4a664";
|
|
sha256 = "0sgh7r30ga5lkx5kbdb6ms5arc4rhpbwky6k85xrgpjy1gs5nx1v";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
sourceRoot = "${src.name}/cartesian_motion_controller/";
|
|
propagatedBuildInputs = [ cartesian-controller-base controller-interface rclcpp ];
|
|
|
|
meta = {
|
|
description = "The cartesian_motion_controller package";
|
|
license = with lib.licenses; [ bsd3 ];
|
|
};
|
|
}
|