1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-15 14:40:58 +03:00
nix-ros-overlay/melodic/joystick-interrupt/default.nix

26 lines
911 B
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, geometry-msgs, neonavigation-common, roscpp, roslint, rostest, rosunit, sensor-msgs, topic-tools }:
buildRosPackage {
pname = "ros-melodic-joystick-interrupt";
version = "0.5.0-r1";
src = fetchurl {
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";
};
buildType = "catkin";
checkInputs = [ roslint rostest rosunit ];
propagatedBuildInputs = [ geometry-msgs neonavigation-common roscpp sensor-msgs topic-tools ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''Interrupt cmd_vel by joystick input'';
license = with lib.licenses; [ bsdOriginal ];
};
}