2024-11-29 13:44:25 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2024-11-29 13:44:25 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-jazzy-axis-description";
|
2024-12-27 13:14:54 +00:00
|
|
|
version = "3.0.1-r1";
|
2024-11-29 13:44:25 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-12-27 13:14:54 +00:00
|
|
|
url = "https://github.com/clearpath-gbp/axis_camera-release/archive/release/jazzy/axis_description/3.0.1-1.tar.gz";
|
|
|
|
name = "3.0.1-1.tar.gz";
|
|
|
|
sha256 = "69870f1046932ceb59d54f12e57a99ba04d3a95fcc3aa71b9fd6be4a4124717d";
|
2024-11-29 13:44:25 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Description package with URDF files for common Axis fixed and PTZ cameras";
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|