2019-03-21 00:14:59 -04:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-04-06 22:15:06 -04:00
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, boost, pkg-config, rosbash }:
|
2019-03-21 00:14:59 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-tracetools";
|
|
|
|
version = "0.2.1-r1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = https://github.com/bosch-robotics-cr/tracetools-release/archive/release/melodic/tracetools/0.2.1-1.tar.gz;
|
|
|
|
sha256 = "1c5114e1acce416cfb16dfca419508fd9dfcfd682ffdd63eafbe7a609d5f14f7";
|
|
|
|
};
|
|
|
|
|
2019-04-06 22:15:06 -04:00
|
|
|
buildInputs = [ boost ];
|
2019-03-21 00:14:59 -04:00
|
|
|
checkInputs = [ rosbash ];
|
2019-04-06 22:15:06 -04:00
|
|
|
nativeBuildInputs = [ catkin pkg-config ];
|
2019-03-21 00:14:59 -04:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Wrapper interface for tracing libraries'';
|
|
|
|
#license = lib.licenses.APLv2;
|
|
|
|
};
|
|
|
|
}
|