1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-13 13:40:32 +03:00
nix-ros-overlay/distros/jazzy/cob-srvs/default.nix

26 lines
999 B
Nix

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-common, builtin-interfaces, geometry-msgs, rosidl-default-generators, rosidl-default-runtime }:
buildRosPackage {
pname = "ros-jazzy-cob-srvs";
version = "2.8.12-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/cob_common-release/archive/release/jazzy/cob_srvs/2.8.12-1.tar.gz";
name = "2.8.12-1.tar.gz";
sha256 = "74fed307f74905e383d2a87fe17c675c7e93cebb555097e7caf0b07debe043c3";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake rosidl-default-generators ];
checkInputs = [ ament-lint-common ];
propagatedBuildInputs = [ builtin-interfaces geometry-msgs rosidl-default-runtime ];
nativeBuildInputs = [ ament-cmake rosidl-default-generators ];
meta = {
description = "This Package contains Care-O-bot specific service definitions.";
license = with lib.licenses; [ asl20 ];
};
}