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/distros/melodic/timestamp-tools/default.nix

25 lines
820 B
Nix

# Copyright 2021 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, roscpp, roslib }:
buildRosPackage {
pname = "ros-melodic-timestamp-tools";
version = "1.6.8";
src = fetchurl {
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";
sha256 = "dabb75248bb8528c603d556f7533df6bf701870db84b5d5c5983e2d7f08464b0";
};
buildType = "catkin";
propagatedBuildInputs = [ roscpp roslib ];
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.'';
license = with lib.licenses; [ bsdOriginal ];
};
}