Basic working melodic with gazebo.

This commit is contained in:
Ben Wolsieffer 2019-03-21 00:14:59 -04:00
parent 13c58f0706
commit 096c49e618
1135 changed files with 28374 additions and 0 deletions

View file

@ -0,0 +1,22 @@
# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, lcov, catkin }:
buildRosPackage {
pname = "ros-melodic-code-coverage";
version = "0.2.3";
src = fetchurl {
url = https://github.com/mikeferguson/code_coverage-gbp/archive/release/melodic/code_coverage/0.2.3-0.tar.gz;
sha256 = "aaf9d0b3b00d1b1af932e9099dbb3a92475ee92e45f189b3bfb3559e8abb1c50";
};
propagatedBuildInputs = [ lcov ];
nativeBuildInputs = [ lcov catkin ];
meta = {
description = ''CMake configuration to run coverage'';
#license = lib.licenses.BSD;
};
}