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/nav2-simple-commander/default.nix

25 lines
963 B
Nix
Raw Normal View History

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, action-msgs, ament-copyright, ament-flake8, ament-pep257, geometry-msgs, lifecycle-msgs, nav2-msgs, pythonPackages, rclpy }:
buildRosPackage {
pname = "ros-iron-nav2-simple-commander";
version = "1.2.9-r1";
src = fetchurl {
url = "https://github.com/SteveMacenski/navigation2-release/archive/release/iron/nav2_simple_commander/1.2.9-1.tar.gz";
name = "1.2.9-1.tar.gz";
sha256 = "02b93d48ae1a60d4200c6c0b91adc9372ab4e0775614c9a4ec46502438e3f7f6";
};
buildType = "ament_python";
checkInputs = [ ament-copyright ament-flake8 ament-pep257 pythonPackages.pytest ];
propagatedBuildInputs = [ action-msgs geometry-msgs lifecycle-msgs nav2-msgs rclpy ];
meta = {
description = "An importable library for writing mobile robot applications in python3";
license = with lib.licenses; [ asl20 ];
};
}