nix-ros-overlay/distros/jazzy/system-modes-msgs/default.nix

27 lines
1.1 KiB
Nix

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-cppcheck, ament-cmake-cpplint, ament-lint-auto, ament-lint-common, rosidl-default-generators, rosidl-default-runtime }:
buildRosPackage {
pname = "ros-jazzy-system-modes-msgs";
version = "0.9.0-r6";
src = fetchurl {
url = "https://github.com/ros2-gbp/system_modes-release/archive/release/jazzy/system_modes_msgs/0.9.0-6.tar.gz";
name = "0.9.0-6.tar.gz";
sha256 = "6acfc9f5dbdd0539a9bfcd4b738ea8381a80fd1d6cabca36fb16d6b508354771";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake rosidl-default-generators ];
checkInputs = [ ament-cmake-cppcheck ament-cmake-cpplint ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ rosidl-default-runtime ];
nativeBuildInputs = [ ament-cmake rosidl-default-generators ];
meta = {
description = "Interface package, containing message definitions and service definitions
for the system modes package.";
license = with lib.licenses; [ asl20 ];
};
}