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/rolling/rosidl-cmake/default.nix

26 lines
1,005 B
Nix

# Copyright 2025 Open Source Robotics Foundation
# 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-rolling-rosidl-cmake";
version = "4.9.3-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rosidl-release/archive/release/rolling/rosidl_cmake/4.9.3-1.tar.gz";
name = "4.9.3-1.tar.gz";
sha256 = "46e0bc55a8dc367f7ea342a5c94260902b09e61bb3905fda6cc9586131cf09dc";
};
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 ];
};
}