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 Mar 27 12:53:57 2020

This commit is contained in:
Superflore 2020-03-27 12:53:57 +00:00 committed by Ben Wolsieffer
parent 4cd892656c
commit 00c03555a3
500 changed files with 3036 additions and 1947 deletions

View file

@ -0,0 +1,25 @@
# Copyright 2020 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, boost, catkin, gtest, lanelet2-core, lanelet2-io, lanelet2-projection, lanelet2-routing, lanelet2-traffic-rules, mrt-cmake-modules }:
buildRosPackage {
pname = "ros-melodic-lanelet2-python";
version = "1.0.1-r1";
src = fetchurl {
url = "https://github.com/fzi-forschungszentrum-informatik/lanelet2-release/archive/release/melodic/lanelet2_python/1.0.1-1.tar.gz";
name = "1.0.1-1.tar.gz";
sha256 = "f40a48bceae8f129db010733f9062ff3a738087a532aa373fdc8a63f506dacab";
};
buildType = "catkin";
checkInputs = [ gtest ];
propagatedBuildInputs = [ boost lanelet2-core lanelet2-io lanelet2-projection lanelet2-routing lanelet2-traffic-rules mrt-cmake-modules ];
nativeBuildInputs = [ catkin mrt-cmake-modules ];
meta = {
description = ''Python bindings for lanelet2'';
license = with lib.licenses; [ bsdOriginal ];
};
}