mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
23 lines
765 B
Nix
23 lines
765 B
Nix
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, pr2eus, jsk-pcl-ros, roseus-tutorials, catkin, jsk-interactive-marker }:
|
|
buildRosPackage {
|
|
pname = "ros-kinetic-pr2eus-tutorials";
|
|
version = "0.3.14";
|
|
|
|
src = fetchurl {
|
|
url = https://github.com/tork-a/jsk_pr2eus-release/archive/release/kinetic/pr2eus_tutorials/0.3.14-0.tar.gz;
|
|
sha256 = "867b35b55ec034aff412e7bcdc213d318f21cd27682ccda3ddbb282579c41de0";
|
|
};
|
|
|
|
buildInputs = [ pr2eus jsk-pcl-ros ];
|
|
propagatedBuildInputs = [ pr2eus jsk-pcl-ros jsk-interactive-marker roseus-tutorials ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''pr2eus_tutorials'';
|
|
#license = lib.licenses.BSD;
|
|
};
|
|
}
|