nix-ros-overlay/distros/humble/delphi-esr-msgs/default.nix

26 lines
1 KiB
Nix

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-common, builtin-interfaces, ros-environment, rosidl-default-generators, rosidl-default-runtime, std-msgs }:
buildRosPackage {
pname = "ros-humble-delphi-esr-msgs";
version = "4.0.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/astuff_sensor_msgs-release/archive/release/humble/delphi_esr_msgs/4.0.0-1.tar.gz";
name = "4.0.0-1.tar.gz";
sha256 = "6ac927f6edf0981f44886474f60e9558ed8417ae8365e1abc8958ff199d59330";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ros-environment rosidl-default-generators ];
checkInputs = [ ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ builtin-interfaces rosidl-default-runtime std-msgs ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = "Message definitions for the Delphi ESR";
license = with lib.licenses; [ mit ];
};
}