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/humble/quaternion-operation/default.nix

27 lines
988 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, ament-cmake-auto, ament-cmake-gtest, ament-lint-auto, eigen, geometry-msgs, ouxt-lint-common, rclcpp, tf2-ros }:
buildRosPackage {
pname = "ros-humble-quaternion-operation";
version = "0.0.11-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/quaternion_operation-release/archive/release/humble/quaternion_operation/0.0.11-1.tar.gz";
name = "0.0.11-1.tar.gz";
sha256 = "67c5e5d58668db3b853787dd024012458056721ac58af2339dd3d353e2ec84f4";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
checkInputs = [ ament-cmake-gtest ament-lint-auto ouxt-lint-common ];
propagatedBuildInputs = [ ament-cmake-auto eigen geometry-msgs rclcpp tf2-ros ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = "The quaternion_operation package";
license = with lib.licenses; [ asl20 ];
};
}