2020-07-31 13:40:46 +00:00
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
2020-07-31 13:40:46 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2020-09-09 15:37:07 -04:00
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, effort-controllers, geometry-msgs, joint-state-controller, joint-trajectory-controller, position-controllers, roscpp, rospy, std-msgs, velocity-controllers }:
|
2020-07-31 13:40:46 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-omnibase-description";
|
2020-10-30 13:06:42 +00:00
|
|
|
version = "1.0.2-r2";
|
2020-07-31 13:40:46 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-10-30 13:06:42 +00:00
|
|
|
url = "https://github.com/ERC-BPGC/omnibase-release/archive/release/melodic/omnibase_description/1.0.2-2.tar.gz";
|
|
|
|
name = "1.0.2-2.tar.gz";
|
|
|
|
sha256 = "5d890cefc30e7016110f00ee5972a77ca231c53f928357c4ff2187d437f15dab";
|
2020-07-31 13:40:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "catkin";
|
2020-09-09 15:37:07 -04:00
|
|
|
propagatedBuildInputs = [ effort-controllers geometry-msgs joint-state-controller joint-trajectory-controller position-controllers roscpp rospy std-msgs velocity-controllers ];
|
2020-07-31 13:40:46 +00:00
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''This package constains the model files of the omnibase(omniwheeled robot)'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|