1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/dashing/gps-umd/default.nix
2019-12-09 23:36:28 -05:00

24 lines
744 B
Nix

# Copyright 2019 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-dashing-gps-umd";
version = "1.0.0-r1";
src = fetchurl {
url = "https://github.com/swri-robotics-gbp/gps_umd-release/archive/release/dashing/gps_umd/1.0.0-1.tar.gz";
name = "1.0.0-1.tar.gz";
sha256 = "f603db9c314ba8bc77a8c130578901834a27bda50a11fd42e43ac001fc323d10";
};
buildType = "catkin";
propagatedBuildInputs = [ gps-msgs gps-tools gpsd-client ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''gps_umd metapackage'';
license = with lib.licenses; [ bsdOriginal ];
};
}