mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-12 02:34:50 +03:00
25 lines
769 B
Nix
25 lines
769 B
Nix
|
|
# Copyright 2025 Open Source Robotics Foundation
|
|
# 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";
|
|
version = "2.1.0-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/gps_umd-release/archive/release/humble/gps_umd/2.1.0-1.tar.gz";
|
|
name = "2.1.0-1.tar.gz";
|
|
sha256 = "123ea89304dc06e63eb0f185aa009640da00dd9ffb239ab21028dc55912903d4";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ ament-cmake ];
|
|
propagatedBuildInputs = [ gps-msgs gps-tools gpsd-client ];
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
meta = {
|
|
description = "gps_umd metapackage";
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|