1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-06-25 16:15:34 +03:00
nix-ros-overlay/dashing/urdf/default.nix
2019-09-06 12:16:22 -04:00

29 lines
1.2 KiB
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-lint-common, tinyxml, urdfdom, urdfdom-headers, tinyxml-vendor, ament-cmake-ros, ament-lint-auto }:
buildRosPackage {
pname = "ros-dashing-urdf";
version = "2.2.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/urdf-release/archive/release/dashing/urdf/2.2.0-1.tar.gz";
name = "2.2.0-1.tar.gz";
sha256 = "23ea44ab3658a060d2f796644bdad2c33d6e28dd6cf204aef509e19b4a02b28b";
};
buildType = "ament_cmake";
buildInputs = [ urdfdom-headers tinyxml tinyxml-vendor urdfdom ];
checkInputs = [ ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ urdfdom-headers tinyxml tinyxml-vendor urdfdom ];
nativeBuildInputs = [ ament-cmake-ros ];
meta = {
description = ''This package contains a C++ parser for the Unified Robot Description
Format (URDF), which is an XML format for representing a robot model.
The code API of the parser has been through our review process and will remain
backwards compatible in future releases.'';
license = with lib.licenses; [ bsdOriginal ];
};
}