mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-10 01:42:24 +03:00
24 lines
804 B
Nix
24 lines
804 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-iron-action-tutorials-py";
|
|
version = "0.27.2-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/demos-release/archive/release/iron/action_tutorials_py/0.27.2-1.tar.gz";
|
|
name = "0.27.2-1.tar.gz";
|
|
sha256 = "7001763d61ff5d81a63f9bd97dd4f2fc21c5df7d5c5065beb6719e830a4fe74a";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|