1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-09 11:54:40 +03:00
nix-ros-overlay/distros/humble/lifecycle-py/default.nix

25 lines
865 B
Nix
Raw Normal View History

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