mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 22:20:34 +03:00
23 lines
762 B
Nix
23 lines
762 B
Nix
![]() |
|
||
|
# 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;
|
||
|
};
|
||
|
}
|