2019-11-07 17:17:35 -05:00
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
2019-11-07 17:17:35 -05:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-12-09 23:36:28 -05:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, gps-msgs, gps-tools, gpsd-client }:
|
2019-11-07 17:17:35 -05:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-dashing-gps-umd";
|
2020-08-24 18:45:07 -04:00
|
|
|
version = "1.0.4-r1";
|
2019-11-07 17:17:35 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-08-24 18:45:07 -04:00
|
|
|
url = "https://github.com/swri-robotics-gbp/gps_umd-release/archive/release/dashing/gps_umd/1.0.4-1.tar.gz";
|
|
|
|
name = "1.0.4-1.tar.gz";
|
|
|
|
sha256 = "980a405d013e9dc2d46d76a68c0c9a12f832bbce7aa402437ea67e4b71a447cf";
|
2019-11-07 17:17:35 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "catkin";
|
2019-12-09 23:36:28 -05:00
|
|
|
propagatedBuildInputs = [ gps-msgs gps-tools gpsd-client ];
|
2019-11-07 17:17:35 -05:00
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''gps_umd metapackage'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|