2019-05-14 01:21:09 -04:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, roslint, sensor-msgs, catkin, rostest, neonavigation-common, topic-tools, roscpp, rosunit, geometry-msgs }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-joystick-interrupt";
|
2019-08-30 00:06:28 -04:00
|
|
|
version = "0.4.2-r1";
|
2019-05-14 01:21:09 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-09-06 12:26:32 -04:00
|
|
|
url = "https://github.com/at-wat/neonavigation-release/archive/release/melodic/joystick_interrupt/0.4.2-1.tar.gz";
|
|
|
|
name = "0.4.2-1.tar.gz";
|
2019-08-30 00:06:28 -04:00
|
|
|
sha256 = "0bbaa6c21924fa160e9e6d11087ec8ee13db29bf05fe9d6b87a1db6ccc82f126";
|
2019-05-14 01:21:09 -04:00
|
|
|
};
|
|
|
|
|
2019-09-06 12:26:32 -04:00
|
|
|
buildType = "catkin";
|
2019-05-14 01:21:09 -04:00
|
|
|
buildInputs = [ sensor-msgs neonavigation-common topic-tools roscpp geometry-msgs ];
|
|
|
|
checkInputs = [ rostest roslint rosunit ];
|
|
|
|
propagatedBuildInputs = [ sensor-msgs neonavigation-common topic-tools roscpp geometry-msgs ];
|
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Interrupt cmd_vel by joystick input'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|