2019-05-14 01:21:09 -04:00
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
2019-05-14 01:21:09 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2020-05-02 01:00:46 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, geometry-msgs, neonavigation-common, roscpp, roslint, rostest, sensor-msgs, topic-tools }:
|
2019-05-14 01:21:09 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-joystick-interrupt";
|
2021-06-25 12:45:04 +00:00
|
|
|
version = "0.10.11-r1";
|
2019-05-14 01:21:09 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-06-25 12:45:04 +00:00
|
|
|
url = "https://github.com/at-wat/neonavigation-release/archive/release/melodic/joystick_interrupt/0.10.11-1.tar.gz";
|
|
|
|
name = "0.10.11-1.tar.gz";
|
|
|
|
sha256 = "c0a76bbb0c21c48e857a843778217320de64c507e7440fb0c94bb9ee5069c6ef";
|
2019-05-14 01:21:09 -04:00
|
|
|
};
|
|
|
|
|
2019-09-06 12:26:32 -04:00
|
|
|
buildType = "catkin";
|
2020-05-02 01:00:46 +00:00
|
|
|
checkInputs = [ roslint rostest ];
|
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 ];
|
|
|
|
};
|
|
|
|
}
|