1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/iron/lifecycle-py/default.nix

24 lines
861 B
Nix

# Copyright 2024 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-iron-lifecycle-py";
version = "0.27.2-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/demos-release/archive/release/iron/lifecycle_py/0.27.2-1.tar.gz";
name = "0.27.2-1.tar.gz";
sha256 = "90ae085472a1e221982e01e50c3b0652d5699d44dcdf123810b030dca8627832";
};
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 ];
};
}