mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
26 lines
1.2 KiB
Nix
26 lines
1.2 KiB
Nix
|
|
# Copyright 2025 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, boost, controller-interface, geographic-msgs, gtk3, hardware-interface, nmea-msgs, ouxt-lint-common, pkg-config, pluginlib, quaternion-operation, rclcpp, rclcpp-components, realtime-tools, ros2-control, rviz2 }:
|
|
buildRosPackage {
|
|
pname = "ros-rolling-nmea-hardware-interface";
|
|
version = "0.0.1-r4";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/nmea_hardware_interface-release/archive/release/rolling/nmea_hardware_interface/0.0.1-4.tar.gz";
|
|
name = "0.0.1-4.tar.gz";
|
|
sha256 = "19cf48d2d2092c36c1b1a0ee01d0e29bf579fde5473e4e32c7bc90cf69515b24";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ ament-cmake ];
|
|
checkInputs = [ ament-lint-auto ouxt-lint-common ];
|
|
propagatedBuildInputs = [ boost controller-interface geographic-msgs gtk3 hardware-interface nmea-msgs pkg-config pluginlib quaternion-operation rclcpp rclcpp-components realtime-tools ros2-control rviz2 ];
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
meta = {
|
|
description = "ros2 hardware interface for nmea_gps";
|
|
license = with lib.licenses; [ "apache-2.0" ];
|
|
};
|
|
}
|