2020-06-12 13:17:24 +00:00
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
2020-06-12 13:17:24 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, gazebo-msgs, gazebo-plugins, gazebo-ros, gazebo-ros-control, gazebo-ros-pkgs, std-msgs }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-rr-openrover-simulation";
|
2020-06-19 12:54:43 +00:00
|
|
|
version = "1.1.1-r1";
|
2020-06-12 13:17:24 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-06-19 12:54:43 +00:00
|
|
|
url = "https://github.com/RoverRobotics-release/rr_openrover_stack-release/archive/release/melodic/rr_openrover_simulation/1.1.1-1.tar.gz";
|
|
|
|
name = "1.1.1-1.tar.gz";
|
|
|
|
sha256 = "b08f5b97f14c600060f59a48f66c22f5b5233b6d11c130fea1a073184871eadf";
|
2020-06-12 13:17:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "catkin";
|
|
|
|
propagatedBuildInputs = [ gazebo-msgs gazebo-plugins gazebo-ros gazebo-ros-control gazebo-ros-pkgs std-msgs ];
|
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''The rr_openrover_simulation package'';
|
2020-06-19 12:54:43 +00:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
2020-06-12 13:17:24 +00:00
|
|
|
};
|
|
|
|
}
|