2019-03-21 00:14:59 -04:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, sensor-msgs, catkin, joy, pacmod-msgs, std-msgs, roscpp }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-pacmod-game-control";
|
|
|
|
version = "2.3.0";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = https://github.com/astuff/pacmod_game_control-release/archive/release/melodic/pacmod_game_control/2.3.0-0.tar.gz;
|
|
|
|
sha256 = "279a95661041ef6f88cf7ba26f5f61af4010fac0ca579a38eddad0088f6dcabb";
|
|
|
|
};
|
|
|
|
|
2019-04-06 22:15:06 -04:00
|
|
|
buildInputs = [ pacmod-msgs std-msgs sensor-msgs joy roscpp ];
|
2019-03-21 00:14:59 -04:00
|
|
|
propagatedBuildInputs = [ pacmod-msgs std-msgs sensor-msgs joy roscpp ];
|
2019-04-06 22:15:06 -04:00
|
|
|
nativeBuildInputs = [ catkin ];
|
2019-03-21 00:14:59 -04:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''ROS Package for controlling the AStuff PACMod with a Joystick'';
|
|
|
|
#license = lib.licenses.MIT;
|
|
|
|
};
|
|
|
|
}
|