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

25 lines
951 B
Nix

# 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-foxy-launch-testing-ament-cmake";
version = "0.10.10-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/launch-release/archive/release/foxy/launch_testing_ament_cmake/0.10.10-1.tar.gz";
name = "0.10.10-1.tar.gz";
sha256 = "ed220790960da2c0a0ed99cb939575736d25b1f4a8928df9c8107e9b28a53a06";
};
buildType = "ament_cmake";
checkInputs = [ ament-cmake-copyright launch-testing ];
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 ];
};
}