mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
24 lines
949 B
Nix
24 lines
949 B
Nix
|
|
# Copyright 2024 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-index-python, ament-mypy, ament-pep257, osrf-pycommon, python3Packages, pythonPackages }:
|
|
buildRosPackage {
|
|
pname = "ros-rolling-launch";
|
|
version = "3.2.1-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/launch-release/archive/release/rolling/launch/3.2.1-1.tar.gz";
|
|
name = "3.2.1-1.tar.gz";
|
|
sha256 = "3fdd34005abb73beb38d1c0bdf3f8a647fd9e9f340b3f911394b8fae85d980cf";
|
|
};
|
|
|
|
buildType = "ament_python";
|
|
checkInputs = [ ament-copyright ament-flake8 ament-mypy ament-pep257 pythonPackages.pytest ];
|
|
propagatedBuildInputs = [ ament-index-python osrf-pycommon python3Packages.importlib-metadata python3Packages.lark python3Packages.pyyaml ];
|
|
|
|
meta = {
|
|
description = ''The ROS launch tool.'';
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|