1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/humble/nao-button-sim/default.nix
2022-06-11 13:21:09 -04:00

24 lines
860 B
Nix

# Copyright 2022 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, nao-sensor-msgs, pythonPackages }:
buildRosPackage {
pname = "ros-humble-nao-button-sim";
version = "0.1.1-r4";
src = fetchurl {
url = "https://github.com/ros2-gbp/nao_button_sim-release/archive/release/humble/nao_button_sim/0.1.1-4.tar.gz";
name = "0.1.1-4.tar.gz";
sha256 = "9bc9e8864b6cc26cb6cab39180f3a4becc38902e72cfe3f2da735d610c058f12";
};
buildType = "ament_python";
checkInputs = [ ament-copyright ament-flake8 ament-pep257 pythonPackages.pytest ];
propagatedBuildInputs = [ nao-sensor-msgs ];
meta = {
description = ''Allows simulating button presses through command line interface'';
license = with lib.licenses; [ asl20 ];
};
}