1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/foxy/run-move-group/default.nix

26 lines
910 B
Nix

# Copyright 2021 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-common, moveit-common, moveit-ros-planning-interface }:
buildRosPackage {
pname = "ros-foxy-run-move-group";
version = "2.2.1-r1";
src = fetchurl {
url = "https://github.com/moveit/moveit2-release/archive/release/foxy/run_move_group/2.2.1-1.tar.gz";
name = "2.2.1-1.tar.gz";
sha256 = "ab5846516a3684bf791cc1e923939afd3b99ded6172f80dcd79b76c4193f7231";
};
buildType = "ament_cmake";
buildInputs = [ moveit-common ];
checkInputs = [ ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ moveit-ros-planning-interface ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''Demo launch file for running a MoveGroup setup'';
license = with lib.licenses; [ bsdOriginal ];
};
}