nix-ros-overlay/distros/humble/action-tutorials-py/default.nix

24 lines
808 B
Nix

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, action-tutorials-interfaces, ament-lint-auto, ament-lint-common, rclpy }:
buildRosPackage {
pname = "ros-humble-action-tutorials-py";
version = "0.20.5-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/demos-release/archive/release/humble/action_tutorials_py/0.20.5-1.tar.gz";
name = "0.20.5-1.tar.gz";
sha256 = "7a2dd8a9899f9a8760a64c8f30ccec84c0bd1b1d0cb2fd37205414f8901b48d8";
};
buildType = "ament_python";
checkInputs = [ ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ action-tutorials-interfaces rclpy ];
meta = {
description = "Python action tutorial code";
license = with lib.licenses; [ asl20 ];
};
}