mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-12 10:44:50 +03:00
26 lines
1 KiB
Nix
26 lines
1 KiB
Nix
|
|
# Copyright 2025 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-copyright, ament-cmake-test, launch-testing, python-cmake-module }:
|
|
buildRosPackage {
|
|
pname = "ros-jazzy-launch-testing-ament-cmake";
|
|
version = "3.4.4-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/launch-release/archive/release/jazzy/launch_testing_ament_cmake/3.4.4-1.tar.gz";
|
|
name = "3.4.4-1.tar.gz";
|
|
sha256 = "b8424075b39b6c0dc74afb7d0fa5c045c0d843aff0598f69a1895562503f0e29";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ ament-cmake ];
|
|
checkInputs = [ ament-cmake-copyright launch-testing python-cmake-module ];
|
|
propagatedBuildInputs = [ ament-cmake-test launch-testing python-cmake-module ];
|
|
nativeBuildInputs = [ ament-cmake ament-cmake-test launch-testing python-cmake-module ];
|
|
|
|
meta = {
|
|
description = "A package providing cmake functions for running launch tests from the build.";
|
|
license = with lib.licenses; [ asl20 bsdOriginal ];
|
|
};
|
|
}
|