mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-09 17:42:22 +03:00

Some checks failed
Build / build (humble, aarch64-linux) (push) Has been cancelled
Build / build (humble, x86_64-linux) (push) Has been cancelled
Build / build (jazzy, aarch64-linux) (push) Has been cancelled
Build / build (jazzy, x86_64-linux) (push) Has been cancelled
Build / build (noetic, aarch64-linux) (push) Has been cancelled
Build / build (noetic, x86_64-linux) (push) Has been cancelled
Build / build (rolling, aarch64-linux) (push) Has been cancelled
Build / build (rolling, x86_64-linux) (push) Has been cancelled
28 lines
1,006 B
Nix
28 lines
1,006 B
Nix
|
|
# Copyright 2025 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, cmake, python3, python3Packages, ros-environment }:
|
|
buildRosPackage {
|
|
pname = "ros-humble-mavlink";
|
|
version = "2025.5.5-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/mavlink-gbp-release/archive/release/humble/mavlink/2025.5.5-1.tar.gz";
|
|
name = "2025.5.5-1.tar.gz";
|
|
sha256 = "b82966a511fe73705440560988c123b71a57cc3e14ba6a814ef02fa8a1979673";
|
|
};
|
|
|
|
buildType = "cmake";
|
|
buildInputs = [ ament-cmake cmake python3 python3Packages.future python3Packages.lxml ros-environment ];
|
|
nativeBuildInputs = [ ament-cmake cmake ros-environment ];
|
|
|
|
meta = {
|
|
description = "MAVLink message marshaling library.
|
|
This package provides C-headers and C++11 library
|
|
for both 1.0 and 2.0 versions of protocol.
|
|
|
|
For pymavlink use separate install via rosdep (python-pymavlink).";
|
|
license = with lib.licenses; [ lgpl3Only ];
|
|
};
|
|
}
|