1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/melodic/mrpt-tutorials/default.nix

23 lines
707 B
Nix
Raw Normal View History

2019-03-21 00:14:59 -04:00
# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, tf, catkin, teleop-twist-keyboard }:
buildRosPackage {
pname = "ros-melodic-mrpt-tutorials";
version = "0.1.24";
2019-03-21 00:14:59 -04:00
src = fetchurl {
url = https://github.com/mrpt-ros-pkg-release/mrpt_navigation-release/archive/release/melodic/mrpt_tutorials/0.1.24-0.tar.gz;
sha256 = "c5e608015e00a03be1ea0aa3a86e91cab4da37a2ec842f915eaaa2a8930c3e8b";
2019-03-21 00:14:59 -04:00
};
propagatedBuildInputs = [ tf teleop-twist-keyboard ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''Example files used as tutorials for MRPT ROS packages'';
#license = lib.licenses.BSD;
};
}