1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-19 16:40:36 +03:00
nix-ros-overlay/distros/melodic/flexbe-testing/default.nix

27 lines
907 B
Nix
Raw Normal View History

2019-03-21 00:14:59 -04:00
# Copyright 2020 Open Source Robotics Foundation
2019-03-21 00:14:59 -04:00
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, flexbe-core, flexbe-msgs, rospy, rostest, rosunit, smach-ros, std-msgs }:
2019-03-21 00:14:59 -04:00
buildRosPackage {
pname = "ros-melodic-flexbe-testing";
version = "1.2.5-r1";
2019-03-21 00:14:59 -04:00
src = fetchurl {
url = "https://github.com/FlexBE/flexbe_behavior_engine-release/archive/release/melodic/flexbe_testing/1.2.5-1.tar.gz";
name = "1.2.5-1.tar.gz";
sha256 = "3203ddf405af11b8012ea96da0dc075674503f159bcd6ab4e1e59f793f59aea7";
2019-03-21 00:14:59 -04:00
};
buildType = "catkin";
buildInputs = [ rostest ];
checkInputs = [ rosunit std-msgs ];
propagatedBuildInputs = [ flexbe-core flexbe-msgs rospy smach-ros ];
nativeBuildInputs = [ catkin ];
2019-03-21 00:14:59 -04:00
meta = {
description = ''flexbe_testing provides a framework for unit testing states.'';
license = with lib.licenses; [ bsdOriginal ];
2019-03-21 00:14:59 -04:00
};
}