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

31 lines
923 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, cmake, gtk, libjpeg, libpng, libtiff, jasper, ffmpeg
2014-09-17 21:10:51 +02:00
, pkgconfig, gstreamer, xineLib, glib, python27, python27Packages, unzip
, enableBloat ? false }:
2014-09-17 21:10:51 +02:00
let v = "2.4.9"; in
stdenv.mkDerivation rec {
name = "opencv-${v}";
src = fetchurl {
2014-09-17 21:10:51 +02:00
url = "mirror://sourceforge/opencvlibrary/opencv-${v}.zip";
sha256 = "0wacpc00dr57w4lxfvllqa177cnbgy2zmcx8pnf8x62lh6210c40";
};
buildInputs =
2014-09-17 21:10:51 +02:00
[ unzip libjpeg libpng libtiff ]
++ lib.optionals enableBloat [ gtk glib jasper ffmpeg xineLib gstreamer python27 python27Packages.numpy ];
nativeBuildInputs = [ cmake pkgconfig ];
enableParallelBuilding = true;
meta = {
description = "Open Computer Vision Library with more than 500 algorithms";
homepage = http://opencv.willowgarage.com/;
license = "BSD";
maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; linux;
};
}