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/leo/default.nix

26 lines
822 B
Nix
Raw Normal View History

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, leo-description, leo-msgs, leo-teleop }:
buildRosPackage {
pname = "ros-rolling-leo";
version = "3.0.2-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/leo_common-release/archive/release/rolling/leo/3.0.2-1.tar.gz";
name = "3.0.2-1.tar.gz";
sha256 = "da1764dcb929dc43e84b54c2e97fe37634f31b10388ae8e6d2e8ce59f608d07a";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
propagatedBuildInputs = [ leo-description leo-msgs leo-teleop ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = "Metapackage of software for Leo Rover common to the robot and ROS desktop";
license = with lib.licenses; [ mit ];
};
}