nix-ros-overlay/melodic/catch-ros/default.nix
2019-03-21 00:14:59 -04:00

22 lines
643 B
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, roscpp }:
buildRosPackage {
pname = "ros-melodic-catch-ros";
version = "0.3.0";
src = fetchurl {
url = https://github.com/AIS-Bonn/catch_ros-release/archive/release/melodic/catch_ros/0.3.0-0.tar.gz;
sha256 = "186ec627d219a896f681446242ce546c8595429ac4f058fab5ac4aebec4f261b";
};
propagatedBuildInputs = [ roscpp ];
nativeBuildInputs = [ catkin roscpp ];
meta = {
description = ''ROS integration for the Catch unit test framework'';
#license = lib.licenses.BSD;
};
}