1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/dashing/lifecycle/default.nix

27 lines
985 B
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, rclcpp-lifecycle, ament-lint-common, lifecycle-msgs, ros-testing, std-msgs, ament-lint-auto, ros2run }:
buildRosPackage {
pname = "ros-dashing-lifecycle";
version = "0.7.8-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/demos-release/archive/release/dashing/lifecycle/0.7.8-1.tar.gz";
name = "0.7.8-1.tar.gz";
sha256 = "8daed29227ec0693c8589416e9b3d28ccf613a5b41de06ce526fd983f70aa418";
};
buildType = "ament_cmake";
buildInputs = [ std-msgs lifecycle-msgs rclcpp-lifecycle ];
checkInputs = [ ros-testing ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ std-msgs lifecycle-msgs rclcpp-lifecycle ros2run ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''Package containing demos for lifecycle implementation'';
license = with lib.licenses; [ asl20 ];
};
}