mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
24 lines
972 B
Nix
24 lines
972 B
Nix
|
|
# Copyright 2023 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-index-python, ament-pep257, launch, launch-xml, launch-yaml, osrf-pycommon, pythonPackages }:
|
|
buildRosPackage {
|
|
pname = "ros-rolling-launch-testing";
|
|
version = "2.2.0-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/launch-release/archive/release/rolling/launch_testing/2.2.0-1.tar.gz";
|
|
name = "2.2.0-1.tar.gz";
|
|
sha256 = "3a6399c879d3907837e3966160d4930706f3c2b333b05c781c9e7bd47d50d209";
|
|
};
|
|
|
|
buildType = "ament_python";
|
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 launch ];
|
|
propagatedBuildInputs = [ ament-index-python launch launch-xml launch-yaml osrf-pycommon pythonPackages.pytest ];
|
|
|
|
meta = {
|
|
description = ''A package to create tests which involve launch files and multiple processes.'';
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|