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/galactic/moveit-plugins/default.nix

25 lines
859 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-simple-controller-manager }:
buildRosPackage {
pname = "ros-galactic-moveit-plugins";
version = "2.2.1-r1";
src = fetchurl {
url = "https://github.com/moveit/moveit2-release/archive/release/galactic/moveit_plugins/2.2.1-1.tar.gz";
name = "2.2.1-1.tar.gz";
sha256 = "2029cc947e7d5475c8331d9db037f8ffca1c6ab6104ef8623a8fe890702dc31f";
};
buildType = "ament_cmake";
checkInputs = [ ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ moveit-simple-controller-manager ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''Metapackage for MoveIt plugins.'';
license = with lib.licenses; [ bsdOriginal ];
};
}