1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00

regenerate all distros, Fri Feb 2 13:15:52 2024

This commit is contained in:
Superflore 2024-02-02 13:15:52 +00:00 committed by Ben Wolsieffer
parent 5053bf9d76
commit 28f3a7e900
648 changed files with 3811 additions and 2432 deletions

View file

@ -0,0 +1,23 @@
# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, pythonPackages }:
buildRosPackage {
pname = "ros-rolling-linux-isolate-process";
version = "0.0.2-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/linux_isolate_process-release/archive/release/rolling/linux_isolate_process/0.0.2-1.tar.gz";
name = "0.0.2-1.tar.gz";
sha256 = "2b401a73f03adb6b148f25cc1ba680469645ec8b919fa7320d16a87c6238957d";
};
buildType = "ament_python";
checkInputs = [ ament-copyright ament-flake8 ament-pep257 pythonPackages.pytest ];
meta = {
description = ''A tool to isolate ros2 nodes'';
license = with lib.licenses; [ asl20 ];
};
}