1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00

regenerate all distros, Fri Jun 12 13:17:24 2020

This commit is contained in:
Superflore 2020-06-12 13:17:24 +00:00 committed by Ben Wolsieffer
parent 1aa4fdb475
commit 2387d4135a
128 changed files with 1609 additions and 307 deletions

View file

@ -0,0 +1,24 @@
# Copyright 2020 Open Source Robotics Foundation
# 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";
version = "1.1.0-r2";
src = fetchurl {
url = "https://github.com/RoverRobotics-release/rr_openrover_stack-release/archive/release/melodic/rr_openrover_simulation/1.1.0-2.tar.gz";
name = "1.1.0-2.tar.gz";
sha256 = "ad3b243af2d65da484f820bd5447dcfed3bd791f9aa19296dac256d4b379d546";
};
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'';
license = with lib.licenses; [ "TODO" ];
};
}