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/rolling/flir-camera-description/default.nix

26 lines
921 B
Nix

# Copyright 2025 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-rolling-flir-camera-description";
version = "3.0.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/flir_camera_driver-release/archive/release/rolling/flir_camera_description/3.0.0-1.tar.gz";
name = "3.0.0-1.tar.gz";
sha256 = "e74a55fd51e69ad50ca77b8808c54c85be175cca3b4ba1a647453a6e3cb0c1b6";
};
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 ];
};
}