1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-15 22:50:46 +03:00
nix-ros-overlay/melodic/test-diagnostic-aggregator/default.nix

26 lines
889 B
Nix
Raw Normal View History

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