2019-09-28 00:32:55 -04:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-12-09 23:36:28 -05:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, angles, geographic-msgs, geometry-msgs, pythonPackages, sensor-msgs, unique-identifier-msgs }:
|
2019-09-28 00:32:55 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-dashing-geodesy";
|
|
|
|
version = "1.0.1-r1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/ros-geographic-info/geographic_info-release/archive/release/dashing/geodesy/1.0.1-1.tar.gz";
|
|
|
|
name = "1.0.1-1.tar.gz";
|
|
|
|
sha256 = "65697d626472d7515652b20979bd6b975b81d8444b66e86a6025b7362176dc92";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2019-12-09 23:36:28 -05:00
|
|
|
buildInputs = [ pythonPackages.catkin-pkg ];
|
|
|
|
propagatedBuildInputs = [ angles geographic-msgs geometry-msgs pythonPackages.pyproj sensor-msgs unique-identifier-msgs ];
|
2019-09-28 00:32:55 -04:00
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Python and C++ interfaces for manipulating geodetic coordinates.'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|