2019-03-21 00:14:59 -04:00
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
2019-03-21 00:14:59 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-12-09 23:36:28 -05:00
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, urdf, xacro }:
|
2019-03-21 00:14:59 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-fetch-description";
|
2021-03-12 14:44:32 +00:00
|
|
|
version = "0.8.3-r1";
|
2019-03-21 00:14:59 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-03-12 14:44:32 +00:00
|
|
|
url = "https://github.com/fetchrobotics-gbp/fetch_ros-release/archive/release/melodic/fetch_description/0.8.3-1.tar.gz";
|
|
|
|
name = "0.8.3-1.tar.gz";
|
|
|
|
sha256 = "687e90ba5a74c8f638c2141f710509056186288a9b58291c6cec54c017680347";
|
2019-03-21 00:14:59 -04:00
|
|
|
};
|
|
|
|
|
2019-09-06 12:26:32 -04:00
|
|
|
buildType = "catkin";
|
2019-12-09 23:36:28 -05:00
|
|
|
propagatedBuildInputs = [ urdf xacro ];
|
2019-03-21 00:14:59 -04:00
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''URDF for Fetch Robot.'';
|
2019-08-30 00:06:28 -04:00
|
|
|
license = with lib.licenses; [ "CC-BY-SA-3.0" ];
|
2019-03-21 00:14:59 -04:00
|
|
|
};
|
|
|
|
}
|