mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
23 lines
691 B
Nix
23 lines
691 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, swri-math-util, catkin, cv-bridge }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-melodic-swri-opencv-util";
|
||
|
version = "2.8.0";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/swri-robotics-gbp/marti_common-release/archive/release/melodic/swri_opencv_util/2.8.0-0.tar.gz;
|
||
|
sha256 = "1300a00f92191a4558880a4849e8daff33a53e12e1c10c43e6782bb99bf5eeef";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ swri-math-util cv-bridge ];
|
||
|
nativeBuildInputs = [ swri-math-util catkin cv-bridge ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''swri_opencv_util'';
|
||
|
#license = lib.licenses.BSD;
|
||
|
};
|
||
|
}
|