2019-12-09 05:16:46 +00:00
|
|
|
|
2020-01-10 12:36:13 +00:00
|
|
|
# Copyright 2020 Open Source Robotics Foundation
|
2019-12-09 05:16:46 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-12-09 23:14:51 -05:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, geometry2, kdl-parser, robot-state-publisher, ros-core, urdf }:
|
2019-12-09 05:16:46 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-eloquent-ros-base";
|
2019-12-20 17:04:47 +00:00
|
|
|
version = "0.8.4-r1";
|
2019-12-09 05:16:46 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-12-20 17:04:47 +00:00
|
|
|
url = "https://github.com/ros2-gbp/variants-release/archive/release/eloquent/ros_base/0.8.4-1.tar.gz";
|
|
|
|
name = "0.8.4-1.tar.gz";
|
|
|
|
sha256 = "9059c2ffe0b1c4081b209f9f3c777af54db276d2f184dff32f13f868aeccfdf8";
|
2019-12-09 05:16:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2019-12-09 23:14:51 -05:00
|
|
|
propagatedBuildInputs = [ geometry2 kdl-parser robot-state-publisher ros-core urdf ];
|
2019-12-09 05:16:46 +00:00
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''A package which extends 'ros_core' and includes other basic functionalities like tf2 and urdf.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|