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/jazzy/ros2nodl/default.nix

24 lines
969 B
Nix

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-flake8, ament-index-python, ament-lint-auto, ament-lint-common, ament-mypy, nodl-python, python3Packages, ros2cli, ros2pkg, ros2run }:
buildRosPackage {
pname = "ros-jazzy-ros2nodl";
version = "0.3.1-r5";
src = fetchurl {
url = "https://github.com/ros2-gbp/nodl-release/archive/release/jazzy/ros2nodl/0.3.1-5.tar.gz";
name = "0.3.1-5.tar.gz";
sha256 = "7f0a76c9807951738592d578af4666cb7828313b3496e920cb84afa35ff42018";
};
buildType = "ament_python";
checkInputs = [ ament-flake8 ament-lint-auto ament-lint-common ament-mypy python3Packages.pytest python3Packages.pytest-mock ];
propagatedBuildInputs = [ ament-index-python nodl-python python3Packages.argcomplete ros2cli ros2pkg ros2run ];
meta = {
description = "CLI tools for NoDL files.";
license = with lib.licenses; [ asl20 ];
};
}