mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
24 lines
744 B
Nix
24 lines
744 B
Nix
|
|
# Copyright 2021 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-auto, pmb2-2dnav, pmb2-maps }:
|
|
buildRosPackage {
|
|
pname = "ros-foxy-pmb2-navigation";
|
|
version = "3.0.1-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/pal-gbp/pmb2_navigation-gbp/archive/release/foxy/pmb2_navigation/3.0.1-1.tar.gz";
|
|
name = "3.0.1-1.tar.gz";
|
|
sha256 = "ab57897df43f10b028519c2e844bf1a03f947be813f42d205cb459d9b24735c9";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
propagatedBuildInputs = [ pmb2-2dnav pmb2-maps ];
|
|
nativeBuildInputs = [ ament-cmake-auto ];
|
|
|
|
meta = {
|
|
description = ''PMB2 navigation metapackage'';
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|