1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/distros/jazzy/leo-description/default.nix

27 lines
932 B
Nix
Raw Permalink Normal View History

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-lint-cmake, ament-cmake-xmllint, ament-lint-auto, robot-state-publisher, xacro }:
buildRosPackage {
pname = "ros-jazzy-leo-description";
version = "3.1.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/leo_common-release/archive/release/jazzy/leo_description/3.1.0-1.tar.gz";
name = "3.1.0-1.tar.gz";
sha256 = "f49a283b31877787085d2bef9b7ad937bd2b302363b239fc0ecbdaf3f641459a";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
checkInputs = [ ament-cmake-lint-cmake ament-cmake-xmllint ament-lint-auto ];
propagatedBuildInputs = [ robot-state-publisher xacro ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = "URDF Description package for Leo Rover";
license = with lib.licenses; [ mit ];
};
}