mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
27 lines
1 KiB
Nix
27 lines
1 KiB
Nix
![]() |
|
||
|
# Copyright 2023 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-rolling-delphi-srr-msgs";
|
||
|
version = "4.0.0-r2";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/ros2-gbp/astuff_sensor_msgs-release/archive/release/rolling/delphi_srr_msgs/4.0.0-2.tar.gz";
|
||
|
name = "4.0.0-2.tar.gz";
|
||
|
sha256 = "b45c1639be87efa2295e8f7b4c45d245e7909ac0c716ddd05abe6974b9adf517";
|
||
|
};
|
||
|
|
||
|
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 ];
|
||
|
};
|
||
|
}
|