1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00

regenerate all distros, Fri Oct 2 13:20:44 2020

This commit is contained in:
Superflore 2020-10-02 13:20:44 +00:00 committed by Ben Wolsieffer
parent b06575ff4a
commit 610176ee38
117 changed files with 1257 additions and 327 deletions

View file

@ -0,0 +1,25 @@
# Copyright 2020 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-eloquent-lanelet2-python";
version = "1.1.1-r1";
src = fetchurl {
url = "https://github.com/fzi-forschungszentrum-informatik/lanelet2-release/archive/release/eloquent/lanelet2_python/1.1.1-1.tar.gz";
name = "1.1.1-1.tar.gz";
sha256 = "9aaef05bb20bc7005875951bc7a91299c8efbe54a623ff178540dc070589fe75";
};
buildType = "catkin";
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 ];
};
}