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/kinetic/turtlebot-simulator/default.nix

23 lines
762 B
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, turtlebot-stdr, catkin, turtlebot-stage, turtlebot-gazebo }:
buildRosPackage {
pname = "ros-kinetic-turtlebot-simulator";
version = "2.2.3";
src = fetchurl {
url = https://github.com/turtlebot-release/turtlebot_simulator-release/archive/release/kinetic/turtlebot_simulator/2.2.3-0.tar.gz;
sha256 = "85560fb43bae17cb301da06c4c1cb3624f4752d366e75105e741c32f6ece7619";
};
propagatedBuildInputs = [ turtlebot-stdr turtlebot-stage turtlebot-gazebo ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''Catkin metapackage for the turtlebot_simulator stack'';
#license = lib.licenses.BSD;
};
}