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/foxy/dbw-polaris-description/default.nix

27 lines
874 B
Nix
Raw Normal View History

# Copyright 2023 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, robot-state-publisher, rviz2, urdf, xacro }:
buildRosPackage {
pname = "ros-foxy-dbw-polaris-description";
version = "2.1.1-r1";
src = fetchurl {
url = "https://github.com/DataspeedInc-release/dbw_ros-release/archive/release/foxy/dbw_polaris_description/2.1.1-1.tar.gz";
name = "2.1.1-1.tar.gz";
sha256 = "9e9f35590f4743f53d1996be094e432a62ee05622ba892dc9ecdb05495810107";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
checkInputs = [ rviz2 ];
propagatedBuildInputs = [ robot-state-publisher urdf xacro ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''URDF and meshes describing Polaris vehicles.'';
license = with lib.licenses; [ bsdOriginal ];
};
}