1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-15 14:40:58 +03:00
nix-ros-overlay/distros/melodic/code-coverage/default.nix

25 lines
745 B
Nix
Raw Normal View History

2019-03-21 00:14:59 -04:00
# Copyright 2020 Open Source Robotics Foundation
2019-03-21 00:14:59 -04:00
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, lcov, pythonPackages }:
2019-03-21 00:14:59 -04:00
buildRosPackage {
pname = "ros-melodic-code-coverage";
version = "0.4.0-r1";
2019-03-21 00:14:59 -04:00
src = fetchurl {
url = "https://github.com/mikeferguson/code_coverage-gbp/archive/release/melodic/code_coverage/0.4.0-1.tar.gz";
name = "0.4.0-1.tar.gz";
sha256 = "0c4bba84a8d48c83e42344871f6889429f3e24317fa3dfc3368437d6d86a0255";
2019-03-21 00:14:59 -04:00
};
buildType = "catkin";
propagatedBuildInputs = [ lcov pythonPackages.coverage ];
nativeBuildInputs = [ catkin ];
2019-03-21 00:14:59 -04:00
meta = {
description = ''CMake configuration to run coverage'';
license = with lib.licenses; [ bsdOriginal ];
2019-03-21 00:14:59 -04:00
};
}