1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-13 13:40:32 +03:00
nix-ros-overlay/distros/humble/depthai-descriptions/default.nix

26 lines
798 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, xacro }:
buildRosPackage {
pname = "ros-humble-depthai-descriptions";
version = "2.8.2-r1";
src = fetchurl {
url = "https://github.com/luxonis/depthai-ros-release/archive/release/humble/depthai_descriptions/2.8.2-1.tar.gz";
name = "2.8.2-1.tar.gz";
sha256 = "57d3076b8d783dfa8b57705daf925a53f8a7813fa6c20f259413922fc7a0f9e1";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
propagatedBuildInputs = [ robot-state-publisher xacro ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''The depthai_descriptions package'';
license = with lib.licenses; [ mit ];
};
}