1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/kinetic/timestamp-tools/default.nix

25 lines
783 B
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, roslib, catkin, roscpp }:
buildRosPackage {
pname = "ros-kinetic-timestamp-tools";
version = "1.6.8";
src = fetchurl {
url = https://github.com/ros-gbp/driver_common-release/archive/release/kinetic/timestamp_tools/1.6.8-0.tar.gz;
sha256 = "62b0c3856b1275b15ec5ae303284165bbdd15ff35a3e3f8304c54817768bc6f4";
};
buildInputs = [ roslib roscpp ];
propagatedBuildInputs = [ roslib roscpp ];
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 = lib.licenses.BSD;
};
}