1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-13 21:50:38 +03:00
nix-ros-overlay/distros/jazzy/flir-camera-description/default.nix

26 lines
920 B
Nix

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-common, robot-state-publisher, urdf, xacro }:
buildRosPackage {
pname = "ros-jazzy-flir-camera-description";
version = "2.0.20-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/flir_camera_driver-release/archive/release/jazzy/flir_camera_description/2.0.20-1.tar.gz";
name = "2.0.20-1.tar.gz";
sha256 = "546b4c5cabe3d0bb913741610a5552129bf83446589c540baffceadaf1ce315a";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
checkInputs = [ ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ robot-state-publisher urdf xacro ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = "FLIR camera Description package";
license = with lib.licenses; [ bsdOriginal ];
};
}