1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/melodic/fetch-description/default.nix

23 lines
665 B
Nix
Raw Normal View History

2019-03-21 00:14:59 -04:00
# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, urdf, xacro }:
buildRosPackage {
pname = "ros-melodic-fetch-description";
version = "0.8.1";
2019-03-21 00:14:59 -04:00
src = fetchurl {
url = https://github.com/fetchrobotics-gbp/fetch_ros-release/archive/release/melodic/fetch_description/0.8.1-0.tar.gz;
sha256 = "5cb7bb5e9f9f1eefc1f99d5c5375ebbeef60d10d62ed7d02478be238d9969087";
2019-03-21 00:14:59 -04:00
};
propagatedBuildInputs = [ urdf xacro ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''URDF for Fetch Robot.'';
license = with lib.licenses; [ "CC-BY-NC-ND-4.0" ];
2019-03-21 00:14:59 -04:00
};
}