mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-12 02:34:50 +03:00
24 lines
892 B
Nix
24 lines
892 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-pep257, launch, launch-ros, python3Packages, pythonPackages }:
|
|
buildRosPackage {
|
|
pname = "ros-humble-launch-pal";
|
|
version = "0.4.0-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/pal-gbp/launch_pal-release/archive/release/humble/launch_pal/0.4.0-1.tar.gz";
|
|
name = "0.4.0-1.tar.gz";
|
|
sha256 = "2b2d68f787b7f1f6f991ad3dd4ad8272de118b3279f17692d91a578ccb3abf06";
|
|
};
|
|
|
|
buildType = "ament_python";
|
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 pythonPackages.pytest ];
|
|
propagatedBuildInputs = [ ament-index-python launch launch-ros python3Packages.pyyaml ];
|
|
|
|
meta = {
|
|
description = "Utilities for launch files";
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|