# Copyright 2024 Open Source Robotics Foundation # Distributed under the terms of the BSD license { lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-common, rosidl-default-generators, rosidl-default-runtime }: buildRosPackage { pname = "ros-rolling-std-srvs"; version = "5.2.2-r1"; src = fetchurl { url = "https://github.com/ros2-gbp/common_interfaces-release/archive/release/rolling/std_srvs/5.2.2-1.tar.gz"; name = "5.2.2-1.tar.gz"; sha256 = "d3e80d6e41f75985e8f534fd84a9bda5bfe098101cf42de7bd4ba1d615362c39"; }; buildType = "ament_cmake"; buildInputs = [ ament-cmake rosidl-default-generators ]; checkInputs = [ ament-lint-common ]; propagatedBuildInputs = [ rosidl-default-runtime ]; nativeBuildInputs = [ ament-cmake rosidl-default-generators ]; meta = { description = ''A package containing some standard service definitions.''; license = with lib.licenses; [ asl20 ]; }; }