2020-10-23 13:30:31 +00:00
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
2020-10-23 13:30:31 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-core, gtest, lanelet2-core, lanelet2-io, lanelet2-maps, lanelet2-projection, lanelet2-routing, lanelet2-traffic-rules, mrt-cmake-modules }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-foxy-lanelet2-validation";
|
|
|
|
version = "1.1.1-r1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/fzi-forschungszentrum-informatik/lanelet2-release/archive/release/foxy/lanelet2_validation/1.1.1-1.tar.gz";
|
|
|
|
name = "1.1.1-1.tar.gz";
|
|
|
|
sha256 = "4b59065a9f6fc4d9ad374a37757e8260620ceacf230bef0526df715ca03c8838";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "catkin";
|
|
|
|
checkInputs = [ gtest lanelet2-maps ];
|
|
|
|
propagatedBuildInputs = [ lanelet2-core lanelet2-io lanelet2-projection lanelet2-routing lanelet2-traffic-rules mrt-cmake-modules ];
|
|
|
|
nativeBuildInputs = [ ament-cmake-core mrt-cmake-modules ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Package for sanitizing lanelet maps'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|