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/distros/eloquent/lifecycle/default.nix
2020-01-17 21:21:17 -05:00

25 lines
908 B
Nix

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