mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
24 lines
923 B
Nix
24 lines
923 B
Nix
|
|
# 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-kinetic-joystick-interrupt";
|
|
version = "0.3.1";
|
|
|
|
src = fetchurl {
|
|
url = https://github.com/at-wat/neonavigation-release/archive/release/kinetic/joystick_interrupt/0.3.1-0.tar.gz;
|
|
sha256 = "766f87e627921c632b905d8204f6ca8ad5c95e17ed2804e5366fe61501f8c81f";
|
|
};
|
|
|
|
buildInputs = [ neonavigation-common topic-tools sensor-msgs roscpp geometry-msgs ];
|
|
checkInputs = [ rostest roslint rosunit ];
|
|
propagatedBuildInputs = [ neonavigation-common topic-tools sensor-msgs roscpp geometry-msgs ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''Interrupt cmd_vel by joystick input'';
|
|
#license = lib.licenses.BSD;
|
|
};
|
|
}
|