2019-05-14 01:21:09 -04:00
|
|
|
|
2020-01-10 12:36:13 +00:00
|
|
|
# Copyright 2020 Open Source Robotics Foundation
|
2019-05-14 01:21:09 -04:00
|
|
|
# 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";
|
2020-04-17 14:28:31 -04:00
|
|
|
version = "0.8.2-r1";
|
2019-05-14 01:21:09 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-04-17 14:28:31 -04:00
|
|
|
url = "https://github.com/at-wat/neonavigation-release/archive/release/melodic/joystick_interrupt/0.8.2-1.tar.gz";
|
|
|
|
name = "0.8.2-1.tar.gz";
|
|
|
|
sha256 = "5f0d27608d4349658a0c58cd51b41da17370c96cbcf489f69fe6a916a8ef7ffc";
|
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 ];
|
|
|
|
};
|
|
|
|
}
|