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/dashing/gpsd-client/default.nix
2019-11-07 17:46:51 -05:00

26 lines
968 B
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, sensor-msgs, gpsd, pkg-config, gps-msgs, rclcpp, rclcpp-components }:
buildRosPackage {
pname = "ros-dashing-gpsd-client";
version = "1.0.0-r1";
src = fetchurl {
url = "https://github.com/swri-robotics-gbp/gps_umd-release/archive/release/dashing/gpsd_client/1.0.0-1.tar.gz";
name = "1.0.0-1.tar.gz";
sha256 = "0d2fe2ce52f10a1817af2fb79898855a5991467198a449e2b7f0481fd9f1fa1a";
};
buildType = "ament_cmake";
buildInputs = [ sensor-msgs gpsd pkg-config gps-msgs rclcpp rclcpp-components ];
propagatedBuildInputs = [ sensor-msgs gpsd pkg-config gps-msgs rclcpp rclcpp-components ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''connects to a GPSd server and broadcasts GPS fixes
using the NavSatFix message'';
license = with lib.licenses; [ bsdOriginal ];
};
}