mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-16 15:10:33 +03:00
26 lines
988 B
Nix
26 lines
988 B
Nix
![]() |
|
||
|
# Copyright 2022 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, ament-cmake-core, boost, gtest, lanelet2-core, lanelet2-io, lanelet2-projection, lanelet2-routing, lanelet2-traffic-rules, mrt-cmake-modules }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-humble-lanelet2-python";
|
||
|
version = "1.1.1-r4";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/ros2-gbp/lanelet2-release/archive/release/humble/lanelet2_python/1.1.1-4.tar.gz";
|
||
|
name = "1.1.1-4.tar.gz";
|
||
|
sha256 = "bb7952552b9866bbe20a3f09b6d7f7955d2bbfd47b26dcb74183feb21ff8c02e";
|
||
|
};
|
||
|
|
||
|
buildType = "ament_cmake";
|
||
|
checkInputs = [ gtest ];
|
||
|
propagatedBuildInputs = [ boost lanelet2-core lanelet2-io lanelet2-projection lanelet2-routing lanelet2-traffic-rules mrt-cmake-modules ];
|
||
|
nativeBuildInputs = [ ament-cmake-core mrt-cmake-modules ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''Python bindings for lanelet2'';
|
||
|
license = with lib.licenses; [ bsdOriginal ];
|
||
|
};
|
||
|
}
|