1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +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.1-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.1-1.tar.gz";
name = "2.13.1-1.tar.gz";
sha256 = "19c54acf412eab7cd015ba6eb9fc3eb993de07fabaf2ad78d7fe31f4f3fea698";
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
};
}