nixpkgs/pkgs/development/libraries/opencv/default.nix

40 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, cmake, gtk, libjpeg, libpng, libtiff, jasper, ffmpeg
, fetchpatch, pkgconfig, gstreamer, xineLib, glib, python27, python27Packages, unzip
, enableBloat ? false }:
2014-12-16 18:10:18 +03:00
let v = "2.4.10"; in
stdenv.mkDerivation rec {
name = "opencv-${v}";
src = fetchurl {
2014-09-17 23:10:51 +04:00
url = "mirror://sourceforge/opencvlibrary/opencv-${v}.zip";
2014-12-16 18:10:18 +03:00
sha256 = "1ilnfm7id8jqg5xmfjhbq81sjxx64av90kwxcs8zv5rp523wpx0v";
};
patches = [(fetchpatch {
url = "https://github.com/Itseez/opencv/commit/ea50be0529c24.diff";
sha256 = "0nm02v7rmfcndj3jzmv3mrqh3hk5n6axx6gdxndyhabn201hqswn";
})];
buildInputs =
2014-09-17 23:10:51 +04:00
[ unzip libjpeg libpng libtiff ]
++ lib.optionals enableBloat [ gtk glib jasper ffmpeg xineLib gstreamer python27 python27Packages.numpy ];
nativeBuildInputs = [ cmake pkgconfig ];
enableParallelBuilding = true;
2014-12-16 18:10:18 +03:00
cmakeFlags = [
"-DCMAKE_BUILD_TYPE=Release"
];
meta = {
description = "Open Computer Vision Library with more than 500 algorithms";
2014-12-16 18:10:18 +03:00
homepage = http://opencv.org/;
license = stdenv.lib.licenses.bsd3;
2014-12-16 18:10:18 +03:00
maintainers = with stdenv.lib.maintainers; [viric flosse];
platforms = with stdenv.lib.platforms; linux;
};
}