1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/melodic/gps-common/default.nix
2019-04-06 22:15:06 -04:00

23 lines
912 B
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, sensor-msgs, catkin, message-filters, nav-msgs, message-generation, message-runtime, rospy, std-msgs, roscpp }:
buildRosPackage {
pname = "ros-melodic-gps-common";
version = "0.2.0";
src = fetchurl {
url = https://github.com/swri-robotics-gbp/gps_umd-release/archive/release/melodic/gps_common/0.2.0-0.tar.gz;
sha256 = "ff84f3a082027035d2363ffcda76b01b2ac06432da53ccc6ee73898d3c502a03";
};
buildInputs = [ nav-msgs message-generation rospy std-msgs sensor-msgs roscpp message-filters ];
propagatedBuildInputs = [ nav-msgs message-runtime rospy std-msgs sensor-msgs roscpp message-filters ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''GPS messages and common routines for use in GPS drivers'';
#license = lib.licenses.BSD;
};
}