2019-11-07 17:17:35 -05:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-12-20 17:04:47 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-common, builtin-interfaces, geometry-msgs, rosidl-default-generators, rosidl-default-runtime, std-msgs }:
|
2019-11-07 17:17:35 -05:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-dashing-automotive-navigation-msgs";
|
2019-12-20 17:04:47 +00:00
|
|
|
version = "3.0.1-r2";
|
2019-11-07 17:17:35 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-12-20 17:04:47 +00:00
|
|
|
url = "https://github.com/astuff/automotive_autonomy_msgs-release/archive/release/dashing/automotive_navigation_msgs/3.0.1-2.tar.gz";
|
|
|
|
name = "3.0.1-2.tar.gz";
|
|
|
|
sha256 = "f57397455c3d4b41091a63c93a9923d906887b488e135fc497d9897d03c00a5b";
|
2019-11-07 17:17:35 -05:00
|
|
|
};
|
|
|
|
|
2019-12-20 17:04:47 +00:00
|
|
|
buildType = "catkin";
|
|
|
|
buildInputs = [ rosidl-default-generators ];
|
|
|
|
checkInputs = [ ament-lint-auto ament-lint-common ];
|
2019-12-09 23:36:28 -05:00
|
|
|
propagatedBuildInputs = [ builtin-interfaces geometry-msgs rosidl-default-runtime std-msgs ];
|
2019-12-20 17:04:47 +00:00
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
2019-11-07 17:17:35 -05:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Generic Messages for Navigation Objectives in Automotive Automation Software'';
|
|
|
|
license = with lib.licenses; [ mit ];
|
|
|
|
};
|
|
|
|
}
|