1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/crystal/lifecycle/default.nix

26 lines
926 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, std-msgs, ament-lint-auto, ros2run }:
buildRosPackage {
pname = "ros-crystal-lifecycle";
version = "0.6.2";
src = fetchurl {
url = https://github.com/ros2-gbp/demos-release/archive/release/crystal/lifecycle/0.6.2-0.tar.gz;
sha256 = "ba439c587c69ca1c2a3ec569d7e3d9d4995aa98c2e7566ad316e8f6cfd3eaac5";
};
buildType = "ament_cmake";
buildInputs = [ std-msgs lifecycle-msgs rclcpp-lifecycle ];
checkInputs = [ 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 ];
};
}