mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-13 21:50:38 +03:00
25 lines
870 B
Nix
25 lines
870 B
Nix
|
|
# Copyright 2023 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.1.3-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/clearpath-gbp/clearpath_common-release/archive/release/humble/clearpath_sensors_description/0.1.3-1.tar.gz";
|
|
name = "0.1.3-1.tar.gz";
|
|
sha256 = "fb19e76f81a1f91f2f8aea4833f69481070065fa4e634070c1a2458cc6f9df5e";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|