1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-19 16:40:36 +03:00
nix-ros-overlay/distros/melodic/swri-opencv-util/default.nix

25 lines
757 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, boost, catkin, cv-bridge, swri-math-util }:
2019-03-21 00:14:59 -04:00
buildRosPackage {
pname = "ros-melodic-swri-opencv-util";
version = "2.13.7-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.7-1.tar.gz";
name = "2.13.7-1.tar.gz";
sha256 = "bd85456c9599156025dcf5fa9bd4e82cb2f9cf9bc6ca74e4aa9c507c7fcb96c7";
2019-03-21 00:14:59 -04:00
};
buildType = "catkin";
propagatedBuildInputs = [ boost 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
};
}