# Copyright 2022 Open Source Robotics Foundation # Distributed under the terms of the BSD license { lib, buildRosPackage, fetchurl, action-msgs, ament-cmake, ament-lint-auto, ament-lint-common, rosidl-core-runtime }: buildRosPackage { pname = "ros-rolling-rosidl-default-runtime"; version = "1.4.0-r1"; src = fetchurl { url = "https://github.com/ros2-gbp/rosidl_defaults-release/archive/release/rolling/rosidl_default_runtime/1.4.0-1.tar.gz"; name = "1.4.0-1.tar.gz"; sha256 = "9d17392d46ed005d748ab95ee986a6463581bf3f5d65e3b66d5ee5ecb8e02782"; }; buildType = "ament_cmake"; buildInputs = [ ament-cmake ]; checkInputs = [ ament-lint-auto ament-lint-common ]; propagatedBuildInputs = [ action-msgs rosidl-core-runtime ]; nativeBuildInputs = [ ament-cmake ]; meta = { description = ''A configuration package defining the runtime for the ROS interfaces.''; license = with lib.licenses; [ asl20 ]; }; }