1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-19 16:40:36 +03:00
nix-ros-overlay/eloquent/lifecycle/default.nix

26 lines
908 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, 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 ];
};
}