1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-19 16:40:36 +03:00
nix-ros-overlay/distros/iron/nao-button-sim/default.nix

25 lines
856 B
Nix
Raw Normal View History

# Copyright 2024 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-iron-nao-button-sim";
version = "0.1.1-r5";
src = fetchurl {
url = "https://github.com/ros2-gbp/nao_button_sim-release/archive/release/iron/nao_button_sim/0.1.1-5.tar.gz";
name = "0.1.1-5.tar.gz";
sha256 = "85f25a2cc8926839802fc405701c091d8f8d48e36c19a63498f916563a2003f7";
};
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 ];
};
}