1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-19 08:31:07 +03:00
nix-ros-overlay/melodic/pacmod-game-control/default.nix

24 lines
819 B
Nix
Raw Normal View History

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";
};
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 ];
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;
};
}