2022-06-09 18:50:37 -04:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2022-06-09 18:50:37 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, gps-msgs, gps-tools, gpsd-client }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-humble-gps-umd";
|
2025-05-23 14:00:27 +00:00
|
|
|
version = "2.0.5-r1";
|
2022-06-09 18:50:37 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2025-05-23 14:00:27 +00:00
|
|
|
url = "https://github.com/ros2-gbp/gps_umd-release/archive/release/humble/gps_umd/2.0.5-1.tar.gz";
|
|
|
|
name = "2.0.5-1.tar.gz";
|
|
|
|
sha256 = "d097bd2bab6f2092ba40f8a7457aeabdd86dba888db99342b96b50325ffd2e4e";
|
2022-06-09 18:50:37 -04:00
|
|
|
};
|
|
|
|
|
2023-06-19 17:15:23 -04:00
|
|
|
buildType = "ament_cmake";
|
2022-11-04 19:29:56 -04:00
|
|
|
buildInputs = [ ament-cmake ];
|
2022-06-09 18:50:37 -04:00
|
|
|
propagatedBuildInputs = [ gps-msgs gps-tools gpsd-client ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "gps_umd metapackage";
|
2022-06-09 18:50:37 -04:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|