mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-15 03:58:39 +03:00
Basic working melodic with gazebo.
This commit is contained in:
parent
13c58f0706
commit
096c49e618
1135 changed files with 28374 additions and 0 deletions
22
melodic/code-coverage/default.nix
Normal file
22
melodic/code-coverage/default.nix
Normal 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;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue