2021-04-30 12:50:24 +00:00
|
|
|
|
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2021-05-07 13:30:57 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-cppcheck, ament-cmake-cpplint, ament-lint-auto, ament-lint-common, rosidl-default-generators, rosidl-default-runtime }:
|
2021-04-30 12:50:24 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-foxy-system-modes-msgs";
|
2021-07-23 13:01:27 +00:00
|
|
|
version = "0.9.0-r1";
|
2021-04-30 12:50:24 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-07-23 13:01:27 +00:00
|
|
|
url = "https://github.com/microROS/system_modes-release/archive/release/foxy/system_modes_msgs/0.9.0-1.tar.gz";
|
|
|
|
name = "0.9.0-1.tar.gz";
|
|
|
|
sha256 = "8eebfd37f1f9def3dbb28119bbfd4bd10776cb35c4ccd1857910b451a84211a7";
|
2021-04-30 12:50:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2021-05-28 23:33:17 +00:00
|
|
|
checkInputs = [ ament-cmake-cppcheck ament-cmake-cpplint ament-lint-auto ament-lint-common ];
|
|
|
|
propagatedBuildInputs = [ rosidl-default-runtime ];
|
2021-05-07 13:30:57 +00:00
|
|
|
nativeBuildInputs = [ ament-cmake rosidl-default-generators ];
|
2021-04-30 12:50:24 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Interface package, containing message definitions and service definitions
|
|
|
|
for the system modes package.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|