1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/humble/pmb2-maps/default.nix

24 lines
708 B
Nix

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake-auto }:
buildRosPackage {
pname = "ros-humble-pmb2-maps";
version = "4.0.9-r1";
src = fetchurl {
url = "https://github.com/pal-gbp/pmb2_navigation-gbp/archive/release/humble/pmb2_maps/4.0.9-1.tar.gz";
name = "4.0.9-1.tar.gz";
sha256 = "066c638506b530b66a95410b360e0062536ec139afcfbed6380401682537c69d";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake-auto ];
nativeBuildInputs = [ ament-cmake-auto ];
meta = {
description = ''PMB2-specific maps and launch files.'';
license = with lib.licenses; [ asl20 ];
};
}