2019-09-04 17:11:04 -04:00
|
|
|
|
2020-01-10 12:36:13 +00:00
|
|
|
# Copyright 2020 Open Source Robotics Foundation
|
2019-09-04 17:11:04 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-12-09 23:36:28 -05:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, ament-xmllint, pythonPackages, ros2cli }:
|
2019-09-06 12:16:22 -04:00
|
|
|
buildRosPackage {
|
2019-09-04 17:11:04 -04:00
|
|
|
pname = "ros-dashing-ros2node";
|
2020-03-27 12:53:57 +00:00
|
|
|
version = "0.7.10-r1";
|
2019-09-04 17:11:04 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-03-27 12:53:57 +00:00
|
|
|
url = "https://github.com/ros2-gbp/ros2cli-release/archive/release/dashing/ros2node/0.7.10-1.tar.gz";
|
|
|
|
name = "0.7.10-1.tar.gz";
|
|
|
|
sha256 = "86341fa400424abfbe4059211bc3369306b4e6ff7b4cc634df42ef1bfa01bb00";
|
2019-09-04 17:11:04 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
2019-12-09 23:36:28 -05:00
|
|
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 ament-xmllint pythonPackages.pytest ];
|
2019-09-04 17:11:04 -04:00
|
|
|
propagatedBuildInputs = [ ros2cli ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''The node command for ROS 2 command line tools.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|