1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/distros/rolling/moveit-common/default.nix

26 lines
773 B
Nix
Raw Normal View History

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, backward-ros }:
buildRosPackage {
pname = "ros-rolling-moveit-common";
version = "2.12.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/moveit2-release/archive/release/rolling/moveit_common/2.12.0-1.tar.gz";
name = "2.12.0-1.tar.gz";
sha256 = "54ad9060816f909b52d163b66eba3e5a84fda74801db523d8aa139a0af1d77bc";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
propagatedBuildInputs = [ backward-ros ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = "Common support functionality used throughout MoveIt";
license = with lib.licenses; [ bsd3 ];
};
}