2020-09-09 15:37:07 -04:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2020-09-09 15:37:07 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, gtest, lanelet2-core, lanelet2-io, lanelet2-maps, lanelet2-projection, lanelet2-routing, lanelet2-traffic-rules, mrt-cmake-modules }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-noetic-lanelet2-validation";
|
2024-11-08 14:09:31 +00:00
|
|
|
version = "1.2.2-r2";
|
2020-09-09 15:37:07 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-11-08 14:09:31 +00:00
|
|
|
url = "https://github.com/fzi-forschungszentrum-informatik/lanelet2-release/archive/release/noetic/lanelet2_validation/1.2.2-2.tar.gz";
|
|
|
|
name = "1.2.2-2.tar.gz";
|
|
|
|
sha256 = "66aa250592f2f776eabf8c0bd239658bc30e816e2701dea5132def0619cf5831";
|
2020-09-09 15:37:07 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "catkin";
|
2022-11-04 19:29:56 -04:00
|
|
|
buildInputs = [ catkin ];
|
2020-09-09 15:37:07 -04:00
|
|
|
checkInputs = [ gtest lanelet2-maps ];
|
|
|
|
propagatedBuildInputs = [ lanelet2-core lanelet2-io lanelet2-projection lanelet2-routing lanelet2-traffic-rules mrt-cmake-modules ];
|
|
|
|
nativeBuildInputs = [ catkin mrt-cmake-modules ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "Package for sanitizing lanelet maps";
|
2020-09-09 15:37:07 -04:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|