2024-02-02 13:15:52 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2024-02-02 13:15:52 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, python3Packages }:
|
2024-02-02 13:15:52 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-linux-isolate-process";
|
2024-03-08 13:41:18 +00:00
|
|
|
version = "0.0.2-r2";
|
2024-02-02 13:15:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-03-08 13:41:18 +00:00
|
|
|
url = "https://github.com/ros2-gbp/linux_isolate_process-release/archive/release/rolling/linux_isolate_process/0.0.2-2.tar.gz";
|
|
|
|
name = "0.0.2-2.tar.gz";
|
|
|
|
sha256 = "23b2bd13d6fce38fd9b4c86fff450a295aa5a9e69873b99bd3834e56c70667e2";
|
2024-02-02 13:15:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
2025-01-03 13:42:37 +00:00
|
|
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 python3Packages.pytest ];
|
2024-02-02 13:15:52 +00:00
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "A tool to isolate ros2 nodes";
|
2024-02-02 13:15:52 +00:00
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|