1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/melodic/distance-map-opencv/default.nix

26 lines
859 B
Nix

# Copyright 2021 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, distance-map-core, image-geometry }:
buildRosPackage {
pname = "ros-melodic-distance-map-opencv";
version = "0.1.0-r1";
src = fetchurl {
url = "https://github.com/artivis/distance_map-release/archive/release/melodic/distance_map_opencv/0.1.0-1.tar.gz";
name = "0.1.0-1.tar.gz";
sha256 = "391ef19d3ae55b03cdf3e80337d80a73134c2cd1d7fc93fdaf6474bd5c995ca8";
};
buildType = "catkin";
propagatedBuildInputs = [ distance-map-core image-geometry ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''Node package of the map_distance project.
It contains the ROS node that instantiate the
distance map plugin.'';
license = with lib.licenses; [ asl20 bsdOriginal ];
};
}