2019-11-07 17:17:35 -05:00
|
|
|
|
2020-01-10 12:36:13 +00:00
|
|
|
# Copyright 2020 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-srr-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_srr_msgs/3.0.1-1.tar.gz";
|
|
|
|
name = "3.0.1-1.tar.gz";
|
|
|
|
sha256 = "c6a4e3bd289113b51cc73fea0dc661f374eaf7dd8b7cce7de309844d0ba44165";
|
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 SRR'';
|
|
|
|
license = with lib.licenses; [ mit ];
|
|
|
|
};
|
|
|
|
}
|