mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
23 lines
745 B
Nix
23 lines
745 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, pr2-gazebo-plugins, pr2-gazebo, catkin, pr2-controller-configuration-gazebo }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-kinetic-pr2-simulator";
|
||
|
version = "2.0.11";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/pr2-gbp/pr2_simulator-release/archive/release/kinetic/pr2_simulator/2.0.11-0.tar.gz;
|
||
|
sha256 = "2c99e6d201c071f9f039991138dada3a18c31dc85bda8a0deab93084d25c5e3e";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ pr2-gazebo-plugins pr2-gazebo pr2-controller-configuration-gazebo ];
|
||
|
nativeBuildInputs = [ catkin ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''The pr2_simulator package'';
|
||
|
#license = lib.licenses.BSD;
|
||
|
};
|
||
|
}
|