mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-15 06:31:44 +03:00
23 lines
875 B
Nix
23 lines
875 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, nav2d-karto, nav2d-navigator, nav2d-remote, nav2d-operator, nav2d-msgs, catkin, nav2d-exploration, nav2d-localizer }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-melodic-nav2d-tutorials";
|
||
|
version = "0.4.2";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/skasperski/navigation_2d-release/archive/release/melodic/nav2d_tutorials/0.4.2-0.tar.gz;
|
||
|
sha256 = "ae60ec866cca40ba8cd6f96181b3dfed1bde5cac12dd9813260a77837e078b3b";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ nav2d-localizer nav2d-navigator nav2d-remote nav2d-karto nav2d-operator nav2d-msgs nav2d-exploration ];
|
||
|
nativeBuildInputs = [ catkin ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''Contains a set of tutorials that run 2D-Navigation within Stage-Simulator.'';
|
||
|
#license = lib.licenses.GPLv3;
|
||
|
};
|
||
|
}
|