1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-16 15:10:33 +03:00
nix-ros-overlay/distros/humble/launch-testing-ament-cmake/default.nix

26 lines
981 B
Nix
Raw Normal View History

# Copyright 2022 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-humble-launch-testing-ament-cmake";
version = "1.0.3-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/launch-release/archive/release/humble/launch_testing_ament_cmake/1.0.3-1.tar.gz";
name = "1.0.3-1.tar.gz";
sha256 = "7b495812abea0138f895590bade846a9f096c9c5feac6d78c51bd2dd8cbed3e1";
};
buildType = "ament_cmake";
checkInputs = [ ament-cmake-copyright launch-testing python-cmake-module ];
propagatedBuildInputs = [ ament-cmake-test launch-testing python-cmake-module ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''A package providing cmake functions for running launch tests from the build.'';
license = with lib.licenses; [ asl20 bsdOriginal ];
};
}