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/dashing/localization-common/default.nix
2019-12-09 23:36:28 -05:00

25 lines
1 KiB
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gtest, ament-lint-auto, ament-lint-common, autoware-auto-cmake, geometry-msgs, osrf-testing-tools-cpp, tf2 }:
buildRosPackage {
pname = "ros-dashing-localization-common";
version = "0.0.2-r1";
src = fetchurl {
url = "https://gitlab.com/AutowareAuto/AutowareAuto-release/repository/archive.tar.gz?ref=release/dashing/localization_common/0.0.2-1";
name = "archive.tar.gz";
sha256 = "03fce843ec7e263f7bb29438029c3319708ef0ecebffa3744001a9c089fa17e0";
};
buildType = "ament_cmake";
checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common osrf-testing-tools-cpp ];
propagatedBuildInputs = [ geometry-msgs tf2 ];
nativeBuildInputs = [ ament-cmake autoware-auto-cmake ];
meta = {
description = ''Contains common functionality and interfaces for localizer implementations'';
license = with lib.licenses; [ asl20 ];
};
}