2023-11-24 13:11:26 +00:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2023-11-24 13:11:26 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, leo-description, leo-msgs, leo-teleop }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-leo";
|
2024-05-10 13:12:06 +00:00
|
|
|
version = "3.0.2-r1";
|
2023-11-24 13:11:26 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-05-10 13:12:06 +00:00
|
|
|
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";
|
2023-11-24 13:11:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake ];
|
|
|
|
propagatedBuildInputs = [ leo-description leo-msgs leo-teleop ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "Metapackage of software for Leo Rover common to the robot and ROS desktop";
|
2023-11-24 13:11:26 +00:00
|
|
|
license = with lib.licenses; [ mit ];
|
|
|
|
};
|
|
|
|
}
|