mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-13 21:50:38 +03:00
23 lines
686 B
Nix
23 lines
686 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, pr2-moveit-config, catkin, pr2-moveit-plugins }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-kinetic-moveit-pr2";
|
||
|
version = "0.7.1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/ros-gbp/moveit_pr2-release/archive/release/kinetic/moveit_pr2/0.7.1-0.tar.gz;
|
||
|
sha256 = "c70f2fae2a37dd512da5400ffa0070a6763a3c61ad7458e64510e09664362113";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ pr2-moveit-config pr2-moveit-plugins ];
|
||
|
nativeBuildInputs = [ catkin ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''All PR2-specific packages for MoveIt'';
|
||
|
#license = lib.licenses.BSD;
|
||
|
};
|
||
|
}
|