mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-18 16:10:23 +03:00
25 lines
943 B
Nix
25 lines
943 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-melodic-joystick-interrupt";
|
||
|
version = "0.4.0-r1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/at-wat/neonavigation-release/archive/release/melodic/joystick_interrupt/0.4.0-1.tar.gz;
|
||
|
sha256 = "46e6ef77e5face92d3b48f5f4f62ad1452996f145956203f807e112b17af84af";
|
||
|
};
|
||
|
|
||
|
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 ];
|
||
|
};
|
||
|
}
|