2024-05-24 14:00:52 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2024-05-24 14:00:52 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-python, ament-lint-auto, ament-lint-common, python3Packages, rosidl-pycommon }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-jazzy-rosidl-cmake";
|
2024-12-27 13:14:54 +00:00
|
|
|
version = "4.6.5-r1";
|
2024-05-24 14:00:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-12-27 13:14:54 +00:00
|
|
|
url = "https://github.com/ros2-gbp/rosidl-release/archive/release/jazzy/rosidl_cmake/4.6.5-1.tar.gz";
|
|
|
|
name = "4.6.5-1.tar.gz";
|
|
|
|
sha256 = "a1522bcc3751a656e62a3f70999c1988932f50ca2de6fa49a044decffc1f07d5";
|
2024-05-24 14:00:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake-python ];
|
|
|
|
checkInputs = [ ament-lint-auto ament-lint-common ];
|
|
|
|
propagatedBuildInputs = [ ament-cmake python3Packages.empy rosidl-pycommon ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ament-cmake-python python3Packages.empy ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "The CMake functionality to invoke code generation for ROS interface files.";
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|