mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
23 lines
900 B
Nix
23 lines
900 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, pr2-navigation-config, amcl, joint-trajectory-generator, pr2-machine, catkin, move-base, pr2-move-base, topic-tools, pr2-tuck-arms-action }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-kinetic-pr2-navigation-global";
|
||
|
version = "0.1.28";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/pr2-gbp/pr2_navigation-release/archive/release/kinetic/pr2_navigation_global/0.1.28-0.tar.gz;
|
||
|
sha256 = "fb5bf2e4615836de39da5c6e093341919e81afa3b69da87f6eb9d1019e34a833";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ pr2-navigation-config amcl pr2-move-base joint-trajectory-generator pr2-machine pr2-tuck-arms-action topic-tools move-base ];
|
||
|
nativeBuildInputs = [ catkin ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''This package holds XML files for running the'';
|
||
|
#license = lib.licenses.BSD;
|
||
|
};
|
||
|
}
|