mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-13 13:40:32 +03:00
25 lines
869 B
Nix
25 lines
869 B
Nix
|
|
# Copyright 2021 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-core, boost, gtest, lanelet2-core, mrt-cmake-modules, pugixml }:
|
|
buildRosPackage {
|
|
pname = "ros-foxy-lanelet2-io";
|
|
version = "1.1.1-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/fzi-forschungszentrum-informatik/lanelet2-release/archive/release/foxy/lanelet2_io/1.1.1-1.tar.gz";
|
|
name = "1.1.1-1.tar.gz";
|
|
sha256 = "408c1360908af9c0bd336550027a95b811f73fca34bf94f125bba5b89163b7c7";
|
|
};
|
|
|
|
buildType = "catkin";
|
|
checkInputs = [ gtest ];
|
|
propagatedBuildInputs = [ boost lanelet2-core mrt-cmake-modules pugixml ];
|
|
nativeBuildInputs = [ ament-cmake-core mrt-cmake-modules ];
|
|
|
|
meta = {
|
|
description = ''Parser/Writer module for lanelet2'';
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|