nix-ros-overlay/dashing/action-tutorials/default.nix
2019-12-09 23:36:28 -05:00

25 lines
924 B
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, action-msgs, ament-cmake, ament-lint-auto, ament-lint-common, rclpy, rosidl-default-generators, 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";
checkInputs = [ ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ action-msgs rclpy rosidl-default-runtime ];
nativeBuildInputs = [ ament-cmake rosidl-default-generators ];
meta = {
description = ''Action tutorial code examples'';
license = with lib.licenses; [ asl20 ];
};
}