mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-11 18:24:50 +03:00
26 lines
985 B
Nix
26 lines
985 B
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 }:
|
|
buildRosPackage {
|
|
pname = "ros-rolling-launch-testing-ament-cmake";
|
|
version = "3.8.0-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/launch-release/archive/release/rolling/launch_testing_ament_cmake/3.8.0-1.tar.gz";
|
|
name = "3.8.0-1.tar.gz";
|
|
sha256 = "46390515e40940fd8264f4df572667d1b245a5f62b6221377f0dc6a4d86d4e83";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ ament-cmake ];
|
|
checkInputs = [ ament-cmake-copyright launch-testing ];
|
|
propagatedBuildInputs = [ ament-cmake-test launch-testing ];
|
|
nativeBuildInputs = [ ament-cmake ament-cmake-test launch-testing ];
|
|
|
|
meta = {
|
|
description = "A package providing cmake functions for running launch tests from the build.";
|
|
license = with lib.licenses; [ asl20 bsdOriginal ];
|
|
};
|
|
}
|