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/apex-test-tools/default.nix

26 lines
982 B
Nix
Raw Normal View History

# Copyright 2020 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-auto, ament-cmake-gtest, ament-cmake-pclint, ament-lint-auto, ament-lint-common, osrf-testing-tools-cpp }:
buildRosPackage {
pname = "ros-foxy-apex-test-tools";
version = "0.0.1-r1";
src = fetchurl {
url = "https://gitlab.com/ApexAI/apex_test_tools-release/repository/archive.tar.gz?ref=release/foxy/apex_test_tools/0.0.1-1";
name = "archive.tar.gz";
sha256 = "ef94c25a685938cb24b4164ceff77f876ae3247d281a8b0e8348d611601fcbc0";
};
buildType = "ament_cmake";
checkInputs = [ ament-cmake-pclint ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ ament-cmake-gtest osrf-testing-tools-cpp ];
nativeBuildInputs = [ ament-cmake ament-cmake-auto ];
meta = {
description = ''The package Apex.OS Test Tools contains test helpers'';
license = with lib.licenses; [ asl20 ];
};
}