1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-06-21 14:48:39 +03:00
nix-ros-overlay/dashing/ros-testing/default.nix
2019-11-07 17:46:51 -05:00

25 lines
976 B
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-core, launch-testing, launch-testing-ament-cmake, ros2test, launch-testing-ros, ament-cmake-export-dependencies }:
buildRosPackage {
pname = "ros-dashing-ros-testing";
version = "0.1.1-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/ros_testing-release/archive/release/dashing/ros_testing/0.1.1-1.tar.gz";
name = "0.1.1-1.tar.gz";
sha256 = "edb1d9da92bddd4e8576dc5ffbcf83843a5c844354adf2d14ebc06419d5eb89a";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake-export-dependencies ament-cmake-core ];
propagatedBuildInputs = [ launch-testing launch-testing-ament-cmake ros2test launch-testing-ros ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''The entry point package to launch testing in ROS.'';
license = with lib.licenses; [ asl20 ];
};
}