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

25 lines
990 B
Nix

# 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-eloquent-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/eloquent/apex_test_tools/0.0.1-1";
name = "archive.tar.gz";
sha256 = "668c01ed5f982f36b97cfd95d93351e4b5f68fbd0bed50b106ab485af7048ef7";
};
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 ];
};
}