mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-21 14:48:39 +03:00
24 lines
847 B
Nix
24 lines
847 B
Nix
|
|
# Copyright 2024 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, example-interfaces, pythonPackages, rclpy }:
|
|
buildRosPackage {
|
|
pname = "ros-rolling-action-tutorials-py";
|
|
version = "0.35.0-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/demos-release/archive/release/rolling/action_tutorials_py/0.35.0-1.tar.gz";
|
|
name = "0.35.0-1.tar.gz";
|
|
sha256 = "420ee4f91dadc4a94cee618a7c8355eb3beb6db2f5689e8d9b80da306ca5d9a7";
|
|
};
|
|
|
|
buildType = "ament_python";
|
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 pythonPackages.pytest ];
|
|
propagatedBuildInputs = [ example-interfaces rclpy ];
|
|
|
|
meta = {
|
|
description = "Python action tutorial code";
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|