2021-07-23 13:01:27 +00:00
|
|
|
|
2022-01-07 13:12:33 +00:00
|
|
|
# Copyright 2022 Open Source Robotics Foundation
|
2021-07-23 13:01:27 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, cmake-modules, costmap-2d, eigen, geometry-msgs, nav-msgs, roscpp, roslib, tf, visualization-msgs }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-noetic-steering-functions";
|
2022-03-28 21:23:37 -04:00
|
|
|
version = "0.1.1-r1";
|
2021-07-23 13:01:27 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2022-03-28 21:23:37 -04:00
|
|
|
url = "https://github.com/nobleo/steering_functions-release/archive/release/noetic/steering_functions/0.1.1-1.tar.gz";
|
|
|
|
name = "0.1.1-1.tar.gz";
|
|
|
|
sha256 = "2a652f09d03ada9a6959f635e36563705c6e3447b809a154f377206197493cc4";
|
2021-07-23 13:01:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "catkin";
|
2022-11-04 13:38:03 +00:00
|
|
|
buildInputs = [ cmake-modules ];
|
2021-07-23 13:01:27 +00:00
|
|
|
propagatedBuildInputs = [ costmap-2d eigen geometry-msgs nav-msgs roscpp roslib tf visualization-msgs ];
|
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''The steering_functions package'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|