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