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

26 lines
948 B
Nix
Raw Normal View History

# Copyright 2021 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.5-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/launch-release/archive/release/foxy/launch_testing_ament_cmake/0.10.5-1.tar.gz";
name = "0.10.5-1.tar.gz";
sha256 = "fe621632b2cca00ace5d3691c1aa73b86205b5764a69736088df3c341f900ea2";
};
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 ];
};
}