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/jazzy/clearpath-sensors-description/default.nix

26 lines
968 B
Nix
Raw Normal View History

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, axis-description, microstrain-inertial-description, realsense2-description, velodyne-description }:
buildRosPackage {
pname = "ros-jazzy-clearpath-sensors-description";
version = "2.1.0-r1";
src = fetchurl {
url = "https://github.com/clearpath-gbp/clearpath_common-release/archive/release/jazzy/clearpath_sensors_description/2.1.0-1.tar.gz";
name = "2.1.0-1.tar.gz";
sha256 = "f4892d06888680d2498695af11117e9f05c2ec260cbe8da2a2384abeec12c10e";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
propagatedBuildInputs = [ axis-description microstrain-inertial-description realsense2-description velodyne-description ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = "Clearpath sensors URDF descriptions";
license = with lib.licenses; [ bsdOriginal ];
};
}