2019-11-07 17:17:35 -05:00
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
2019-11-07 17:17:35 -05:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2020-01-31 12:38:34 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-common, builtin-interfaces, ros-environment, rosidl-default-generators, rosidl-default-runtime, std-msgs }:
|
2019-11-07 17:17:35 -05:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-dashing-delphi-esr-msgs";
|
2020-01-31 12:38:34 +00:00
|
|
|
version = "3.0.1-r1";
|
2019-11-07 17:17:35 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-01-31 12:38:34 +00:00
|
|
|
url = "https://github.com/astuff/astuff_sensor_msgs-release/archive/release/dashing/delphi_esr_msgs/3.0.1-1.tar.gz";
|
|
|
|
name = "3.0.1-1.tar.gz";
|
|
|
|
sha256 = "1578811e78ecebdded1dbb09eda1259d1e20ca320964e3574e6d4299d0a5bb3d";
|
2019-11-07 17:17:35 -05:00
|
|
|
};
|
|
|
|
|
2020-01-31 12:38:34 +00:00
|
|
|
buildType = "catkin";
|
|
|
|
buildInputs = [ ros-environment rosidl-default-generators ];
|
|
|
|
checkInputs = [ ament-lint-auto ament-lint-common ];
|
2019-12-09 23:36:28 -05:00
|
|
|
propagatedBuildInputs = [ builtin-interfaces rosidl-default-runtime std-msgs ];
|
2020-01-31 12:38:34 +00:00
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
2019-11-07 17:17:35 -05:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Message definitions for the Delphi ESR'';
|
|
|
|
license = with lib.licenses; [ mit ];
|
|
|
|
};
|
|
|
|
}
|