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

27 lines
1 KiB
Nix
Raw Normal View History

# Copyright 2023 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-iron-launch-testing-ament-cmake";
version = "2.0.1-r2";
src = fetchurl {
url = "https://github.com/ros2-gbp/launch-release/archive/release/iron/launch_testing_ament_cmake/2.0.1-2.tar.gz";
name = "2.0.1-2.tar.gz";
sha256 = "e02ae058b10541f6dbc838d3db582ec8b65f943d420b1e1a2ccf6a0bf2cc5ef8";
};
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 ];
};
}