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/test-diagnostic-aggregator/default.nix

24 lines
878 B
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, pluginlib, catkin, rostest, rospy, diagnostic-msgs, roscpp, diagnostic-aggregator }:
buildRosPackage {
pname = "ros-kinetic-test-diagnostic-aggregator";
version = "1.9.3";
src = fetchurl {
url = https://github.com/ros-gbp/diagnostics-release/archive/release/kinetic/test_diagnostic_aggregator/1.9.3-0.tar.gz;
sha256 = "51a8ae09d06caaf2521869f374a5e44348f37850a75b7ea0e0252a69b49d10e1";
};
buildInputs = [ rostest pluginlib rospy diagnostic-msgs roscpp diagnostic-aggregator ];
propagatedBuildInputs = [ pluginlib rospy diagnostic-msgs roscpp diagnostic-aggregator ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''Basic diagnostic_aggregator tests are in the'';
#license = lib.licenses.BSD;
};
}