2014-07-22 10:01:01 +00:00
|
|
|
{ lib, stdenv, fetchurl, cmake, gtk, libjpeg, libpng, libtiff, jasper, ffmpeg
|
|
|
|
, pkgconfig, gstreamer, xineLib, glib, python27, python27Packages
|
|
|
|
, enableBloat ? false }:
|
2011-09-24 20:40:58 +00:00
|
|
|
|
2013-12-18 16:05:39 +00:00
|
|
|
let v = "2.4.7"; in
|
2010-01-16 21:26:10 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2011-09-24 20:40:58 +00:00
|
|
|
name = "opencv-${v}";
|
2010-01-16 21:26:10 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-05-13 07:17:56 +00:00
|
|
|
url = "mirror://sourceforge/opencvlibrary/opencv-${v}.tar.gz";
|
2013-12-18 16:05:39 +00:00
|
|
|
sha256 = "0hravl3yhyv4r4n7vb055d4qnp893q2hc0fcmmncfh7sbdrnr3f4";
|
2010-01-16 21:26:10 +00:00
|
|
|
};
|
|
|
|
|
2014-07-22 10:01:01 +00:00
|
|
|
buildInputs =
|
|
|
|
[ libjpeg libpng libtiff ]
|
|
|
|
++ lib.optionals enableBloat [ gtk glib jasper ffmpeg xineLib gstreamer python27 python27Packages.numpy ];
|
2011-09-24 20:40:58 +00:00
|
|
|
|
2012-12-28 18:20:09 +00:00
|
|
|
nativeBuildInputs = [ cmake pkgconfig ];
|
2010-01-16 21:26:10 +00:00
|
|
|
|
2011-07-20 13:24:26 +00:00
|
|
|
enableParallelBuilding = true;
|
2010-01-16 21:26:10 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Open Computer Vision Library with more than 500 algorithms";
|
|
|
|
homepage = http://opencv.willowgarage.com/;
|
|
|
|
license = "BSD";
|
2010-07-14 07:50:06 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
2010-01-16 21:26:10 +00:00
|
|
|
};
|
|
|
|
}
|