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/distros/noetic/urdf-parser-plugin/default.nix

25 lines
749 B
Nix
Raw Normal View History

# Copyright 2022 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, urdfdom-headers }:
buildRosPackage {
pname = "ros-noetic-urdf-parser-plugin";
version = "1.13.2-r1";
src = fetchurl {
url = "https://github.com/ros-gbp/urdf-release/archive/release/noetic/urdf_parser_plugin/1.13.2-1.tar.gz";
name = "1.13.2-1.tar.gz";
sha256 = "dbcd40e7d574614908247854c7e3819cc0de375257f7e9e375596d6829e50603";
};
buildType = "catkin";
propagatedBuildInputs = [ urdfdom-headers ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''This package contains a C++ base class for URDF parsers.'';
license = with lib.licenses; [ bsdOriginal ];
};
}