2019-04-09 23:25:34 -04:00
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
2019-04-09 23:25:34 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-12-09 23:36:28 -05:00
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, roscpp, roslib }:
|
2019-04-09 23:25:34 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-timestamp-tools";
|
|
|
|
version = "1.6.8";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-09-06 12:26:32 -04:00
|
|
|
url = "https://github.com/ros-gbp/driver_common-release/archive/release/melodic/timestamp_tools/1.6.8-0.tar.gz";
|
|
|
|
name = "1.6.8-0.tar.gz";
|
2019-04-09 23:25:34 -04:00
|
|
|
sha256 = "dabb75248bb8528c603d556f7533df6bf701870db84b5d5c5983e2d7f08464b0";
|
|
|
|
};
|
|
|
|
|
2019-09-06 12:26:32 -04:00
|
|
|
buildType = "catkin";
|
2019-12-09 23:36:28 -05:00
|
|
|
propagatedBuildInputs = [ roscpp roslib ];
|
2019-04-09 23:25:34 -04:00
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''This package is currently for internal use only. Its API may change
|
|
|
|
without warning in the future. This package is deprecated.'';
|
2019-05-05 02:02:52 -04:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
2019-04-09 23:25:34 -04:00
|
|
|
};
|
|
|
|
}
|