mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-10 09:52:22 +03:00
26 lines
1,022 B
Nix
26 lines
1,022 B
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-jazzy-delphi-srr-msgs";
|
|
version = "4.0.0-r4";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/astuff_sensor_msgs-release/archive/release/jazzy/delphi_srr_msgs/4.0.0-4.tar.gz";
|
|
name = "4.0.0-4.tar.gz";
|
|
sha256 = "c405a3ab45a4f9278668de9707c5b5d3eb283be0fcfa10c91899922f1463c870";
|
|
};
|
|
|
|
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 SRR";
|
|
license = with lib.licenses; [ mit ];
|
|
};
|
|
}
|