mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
25 lines
925 B
Nix
25 lines
925 B
Nix
|
|
# Copyright 2021 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, nav-2d-msgs, nav-2d-utils, nav-grid, nav-msgs, roscpp, roslint, rosunit }:
|
|
buildRosPackage {
|
|
pname = "ros-melodic-nav-grid-iterators";
|
|
version = "0.3.0-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/DLu/robot_navigation-release/archive/release/melodic/nav_grid_iterators/0.3.0-1.tar.gz";
|
|
name = "0.3.0-1.tar.gz";
|
|
sha256 = "e533852555ad4b53d77ea75fe175970fcaa4ab4007154fdfe19b97c9f998db7f";
|
|
};
|
|
|
|
buildType = "catkin";
|
|
checkInputs = [ roslint rosunit ];
|
|
propagatedBuildInputs = [ nav-2d-msgs nav-2d-utils nav-grid nav-msgs roscpp ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''Iterator implementations for moving around the cells of a nav_grid in a number of common patterns.'';
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|