2020-09-09 15:37:07 -04:00
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
2020-09-09 15:37:07 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2020-10-02 13:20:44 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-auto, ament-lint-auto, apex-test-tools }:
|
2020-09-09 15:37:07 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-foxy-test-apex-test-tools";
|
2020-10-02 13:20:44 +00:00
|
|
|
version = "0.0.2-r1";
|
2020-09-09 15:37:07 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-04-09 14:28:48 -04:00
|
|
|
url = "https://gitlab.com/ApexAI/apex_test_tools-release/-/archive/release/foxy/test_apex_test_tools/0.0.2-1/apex_test_tools-release-release-foxy-test_apex_test_tools-0.0.2-1.tar.gz";
|
|
|
|
name = "apex_test_tools-release-release-foxy-test_apex_test_tools-0.0.2-1.tar.gz";
|
2021-04-19 01:10:27 +00:00
|
|
|
sha256 = "275623d9706e2f131b95b40c5f3b082069078ece9a0bb76f2dfc3e4359cf763d";
|
2020-09-09 15:37:07 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2020-10-02 13:20:44 +00:00
|
|
|
checkInputs = [ ament-lint-auto apex-test-tools ];
|
|
|
|
nativeBuildInputs = [ ament-cmake-auto ];
|
2020-09-09 15:37:07 -04:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Test package, which uses things exported by apex_test_tools'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|