mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-12 02:34:50 +03:00
25 lines
871 B
Nix
25 lines
871 B
Nix
|
|
# Copyright 2024 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, realsense2-description, velodyne-description }:
|
|
buildRosPackage {
|
|
pname = "ros-humble-clearpath-sensors-description";
|
|
version = "0.2.10-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/clearpath-gbp/clearpath_common-release/archive/release/humble/clearpath_sensors_description/0.2.10-1.tar.gz";
|
|
name = "0.2.10-1.tar.gz";
|
|
sha256 = "681597d6fcc588a5569b435a8ddaf01fc9e0f39dbe7e370099435df1ca4de224";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ ament-cmake ];
|
|
propagatedBuildInputs = [ realsense2-description velodyne-description ];
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
meta = {
|
|
description = "Clearpath sensors URDF descriptions";
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|