mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
26 lines
988 B
Nix
26 lines
988 B
Nix
![]() |
|
||
|
# 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-galactic-launch-testing-ament-cmake";
|
||
|
version = "0.17.0-r2";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/ros2-gbp/launch-release/archive/release/galactic/launch_testing_ament_cmake/0.17.0-2.tar.gz";
|
||
|
name = "0.17.0-2.tar.gz";
|
||
|
sha256 = "1bbf508f9115547cecbf44752216b4750178c1d205ecf860d6b7e09526b719e7";
|
||
|
};
|
||
|
|
||
|
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 ];
|
||
|
};
|
||
|
}
|