mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-15 03:58:39 +03:00
23 lines
741 B
Nix
23 lines
741 B
Nix
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, tf, catkin, roscpp, geometry-msgs }:
|
|
buildRosPackage {
|
|
pname = "ros-kinetic-robot-setup-tf-tutorial";
|
|
version = "0.2.3";
|
|
|
|
src = fetchurl {
|
|
url = https://github.com/ros-gbp/navigation_tutorials-release/archive/release/kinetic/robot_setup_tf_tutorial/0.2.3-0.tar.gz;
|
|
sha256 = "5e8bce1de150bf3b0330c2fc4637d9a216d2622419ca64a417f1c21197330303";
|
|
};
|
|
|
|
buildInputs = [ tf roscpp geometry-msgs ];
|
|
propagatedBuildInputs = [ tf roscpp geometry-msgs ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''The robot_setup_tf_tutorial package'';
|
|
#license = lib.licenses.BSD;
|
|
};
|
|
}
|