mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 22:20:34 +03:00
23 lines
887 B
Nix
23 lines
887 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, pr2-navigation-config, joint-trajectory-generator, pr2-machine, catkin, move-base, pr2-move-base, topic-tools, pr2-tuck-arms-action }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-kinetic-pr2-navigation-local";
|
||
|
version = "0.1.28";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/pr2-gbp/pr2_navigation-release/archive/release/kinetic/pr2_navigation_local/0.1.28-0.tar.gz;
|
||
|
sha256 = "559339bf891e4fd109bb506274a0949dcd756ad5370b198c44f17f94318a2f0b";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ pr2-navigation-config 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;
|
||
|
};
|
||
|
}
|