mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
23 lines
1.2 KiB
Nix
23 lines
1.2 KiB
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, std-srvs, turtlebot3-applications-msgs, cmake-modules, image-transport, sensor-msgs, cv-bridge, catkin, nav-msgs, turtlebot3-bringup, rospy, std-msgs, roscpp, geometry-msgs, eigen }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-melodic-turtlebot3-panorama";
|
||
|
version = "1.1.0";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/ROBOTIS-GIT-release/turtlebot3_applications-release/archive/release/melodic/turtlebot3_panorama/1.1.0-0.tar.gz;
|
||
|
sha256 = "1ea012a9fb7e79c68cb54f5e608739f79f378ab6867bad8d1aeee3d7e5039c3e";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ std-srvs turtlebot3-applications-msgs cmake-modules image-transport sensor-msgs cv-bridge rospy nav-msgs turtlebot3-bringup eigen std-msgs roscpp geometry-msgs ];
|
||
|
nativeBuildInputs = [ std-srvs turtlebot3-applications-msgs cmake-modules image-transport sensor-msgs cv-bridge catkin rospy nav-msgs eigen std-msgs roscpp geometry-msgs ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''This app utilises pano_ros for taking snapshots and stitching them together to create panorama pictures.'';
|
||
|
#license = lib.licenses.BSD;
|
||
|
};
|
||
|
}
|