1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-13 21:50:38 +03:00
nix-ros-overlay/distros/humble/cob-srvs/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-lint-common, builtin-interfaces, geometry-msgs, rosidl-default-generators, rosidl-default-runtime }:
buildRosPackage {
pname = "ros-humble-cob-srvs";
version = "2.7.10-r1";
src = fetchurl {
url = "https://github.com/4am-robotics/cob_common-release/archive/release/humble/cob_srvs/2.7.10-1.tar.gz";
name = "2.7.10-1.tar.gz";
sha256 = "c0783cbe62d7d71d7d2e7ab870271cfe5c84d62bfb7deba3291de595aaf4c14d";
};
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 ];
};
}