1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-06-19 13:48:39 +03:00
nix-ros-overlay/dashing/action-tutorials/default.nix

27 lines
957 B
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-common, rclpy, rosidl-default-generators, action-msgs, ament-lint-auto, rosidl-default-runtime }:
buildRosPackage {
pname = "ros-dashing-action-tutorials";
version = "0.7.9-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/demos-release/archive/release/dashing/action_tutorials/0.7.9-1.tar.gz";
name = "0.7.9-1.tar.gz";
sha256 = "0c458dcd080c80a3ba7b72655d35b3c3e8b0694d4777a92a0714b7f3b6538e77";
};
buildType = "ament_cmake";
buildInputs = [ action-msgs ];
checkInputs = [ ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ rclpy action-msgs rosidl-default-runtime ];
nativeBuildInputs = [ rosidl-default-generators ament-cmake ];
meta = {
description = ''Action tutorial code examples'';
license = with lib.licenses; [ asl20 ];
};
}