2020-07-24 13:00:10 +00:00
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
2020-07-24 13:00:10 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, builtin-interfaces, lifecycle-msgs, rclcpp, rosidl-default-generators }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-foxy-cascade-lifecycle-msgs";
|
2021-07-16 13:05:44 +00:00
|
|
|
version = "0.0.8-r1";
|
2020-07-24 13:00:10 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-07-16 13:05:44 +00:00
|
|
|
url = "https://github.com/fmrico/cascade_lifecycle-release/archive/release/foxy/cascade_lifecycle_msgs/0.0.8-1.tar.gz";
|
|
|
|
name = "0.0.8-1.tar.gz";
|
|
|
|
sha256 = "f0e734ab6805379d32d941c7358bcbdc82d1774c192a0201be5c7f8fb0168081";
|
2020-07-24 13:00:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
propagatedBuildInputs = [ builtin-interfaces lifecycle-msgs rclcpp rosidl-default-generators ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Messages for rclcpp_cascade_lifecycle package'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|