1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/distros/melodic/swri-opencv-util/default.nix

25 lines
744 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, cv-bridge, swri-math-util }:
2019-03-21 00:14:59 -04:00
buildRosPackage {
pname = "ros-melodic-swri-opencv-util";
version = "2.13.0-r1";
2019-03-21 00:14:59 -04:00
src = fetchurl {
url = "https://github.com/swri-robotics-gbp/marti_common-release/archive/release/melodic/swri_opencv_util/2.13.0-1.tar.gz";
name = "2.13.0-1.tar.gz";
sha256 = "63e6177b07bffe5a38b1668a8b5981c8ff206a7f20aa050e1e2d28387d24eee6";
2019-03-21 00:14:59 -04:00
};
buildType = "catkin";
propagatedBuildInputs = [ cv-bridge swri-math-util ];
nativeBuildInputs = [ catkin ];
2019-03-21 00:14:59 -04:00
meta = {
description = ''swri_opencv_util'';
license = with lib.licenses; [ bsdOriginal ];
2019-03-21 00:14:59 -04:00
};
}