mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
26 lines
1 KiB
Nix
26 lines
1 KiB
Nix
|
|
# Copyright 2024 Open Source Robotics Foundation
|
|
# 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-iron-lanelet2-validation";
|
|
version = "1.1.1-r5";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/lanelet2-release/archive/release/iron/lanelet2_validation/1.1.1-5.tar.gz";
|
|
name = "1.1.1-5.tar.gz";
|
|
sha256 = "f1558138a8b0c9cdb84a808a3564ec7fd8ae7a76f5a50ffec12ab85f9edb6927";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ ament-cmake-core ];
|
|
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 ];
|
|
};
|
|
}
|