2016-06-07 15:08:20 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake, pkgconfig, unzip
|
|
|
|
, zlib
|
|
|
|
, enablePython ? false, pythonPackages
|
|
|
|
, enableGtk2 ? false, gtk2
|
|
|
|
, enableJPEG ? true, libjpeg
|
|
|
|
, enablePNG ? true, libpng
|
|
|
|
, enableTIFF ? true, libtiff
|
2017-04-20 22:46:11 +01:00
|
|
|
, enableEXR ? (!stdenv.isDarwin), openexr, ilmbase
|
2020-06-07 13:39:09 +01:00
|
|
|
, enableFfmpeg ? false, ffmpeg_3
|
2018-05-04 02:51:07 +01:00
|
|
|
, enableGStreamer ? false, gst_all_1
|
2017-10-16 01:37:37 +01:00
|
|
|
, enableEigen ? true, eigen
|
2019-06-19 19:14:17 +01:00
|
|
|
, Cocoa, QTKit
|
2016-06-07 15:08:20 +01:00
|
|
|
}:
|
2011-09-24 21:40:58 +01:00
|
|
|
|
2016-06-07 15:08:20 +01:00
|
|
|
let
|
|
|
|
opencvFlag = name: enabled: "-DWITH_${name}=${if enabled then "ON" else "OFF"}";
|
|
|
|
|
|
|
|
in
|
2010-01-16 21:26:10 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "opencv";
|
2020-11-05 11:50:18 +00:00
|
|
|
version = "2.4.13.7";
|
2010-01-16 21:26:10 +00:00
|
|
|
|
2016-06-07 15:08:20 +01:00
|
|
|
src = fetchFromGitHub {
|
2020-11-05 11:50:18 +00:00
|
|
|
owner = "opencv";
|
2016-06-07 15:08:20 +01:00
|
|
|
repo = "opencv";
|
|
|
|
rev = version;
|
2020-11-05 11:50:18 +00:00
|
|
|
sha256 = "062js7zhh4ixi2wk61wyi23qp9zsk5vw24iz2i5fab2hp97y5zq3";
|
2010-01-16 21:26:10 +00:00
|
|
|
};
|
|
|
|
|
2016-10-02 18:22:02 +01:00
|
|
|
patches =
|
|
|
|
[ # Don't include a copy of the CMake status output in the
|
|
|
|
# build. This causes a runtime dependency on GCC.
|
|
|
|
./no-build-info.patch
|
|
|
|
];
|
|
|
|
|
2017-05-15 21:45:52 +01:00
|
|
|
# This prevents cmake from using libraries in impure paths (which causes build failure on non NixOS)
|
|
|
|
postPatch = ''
|
|
|
|
sed -i '/Add these standard paths to the search paths for FIND_LIBRARY/,/^\s*$/{d}' CMakeLists.txt
|
|
|
|
'';
|
|
|
|
|
2016-10-02 18:22:02 +01:00
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
2014-07-22 11:01:01 +01:00
|
|
|
buildInputs =
|
2016-06-07 15:08:20 +01:00
|
|
|
[ zlib ]
|
2016-06-07 19:26:33 +01:00
|
|
|
++ lib.optional enablePython pythonPackages.python
|
2016-06-07 15:08:20 +01:00
|
|
|
++ lib.optional enableGtk2 gtk2
|
|
|
|
++ lib.optional enableJPEG libjpeg
|
|
|
|
++ lib.optional enablePNG libpng
|
|
|
|
++ lib.optional enableTIFF libtiff
|
|
|
|
++ lib.optionals enableEXR [ openexr ilmbase ]
|
2020-06-07 13:39:09 +01:00
|
|
|
++ lib.optional enableFfmpeg ffmpeg_3
|
2018-05-04 02:51:07 +01:00
|
|
|
++ lib.optionals enableGStreamer (with gst_all_1; [ gstreamer gst-plugins-base ])
|
2016-06-07 15:08:20 +01:00
|
|
|
++ lib.optional enableEigen eigen
|
2019-06-19 19:14:17 +01:00
|
|
|
++ lib.optionals stdenv.isDarwin [ Cocoa QTKit ]
|
2016-06-07 15:08:20 +01:00
|
|
|
;
|
|
|
|
|
2016-06-07 19:26:33 +01:00
|
|
|
propagatedBuildInputs = lib.optional enablePython pythonPackages.numpy;
|
|
|
|
|
2016-06-07 15:08:20 +01:00
|
|
|
nativeBuildInputs = [ cmake pkgconfig unzip ];
|
2011-09-24 21:40:58 +01:00
|
|
|
|
2019-10-30 01:29:30 +00:00
|
|
|
NIX_CFLAGS_COMPILE = lib.optionalString enableEXR "-I${ilmbase.dev}/include/OpenEXR";
|
2016-06-07 15:08:20 +01:00
|
|
|
|
|
|
|
cmakeFlags = [
|
|
|
|
(opencvFlag "TIFF" enableTIFF)
|
|
|
|
(opencvFlag "JPEG" enableJPEG)
|
|
|
|
(opencvFlag "PNG" enablePNG)
|
|
|
|
(opencvFlag "OPENEXR" enableEXR)
|
2018-05-04 02:51:07 +01:00
|
|
|
(opencvFlag "GSTREAMER" enableGStreamer)
|
2016-06-07 15:08:20 +01:00
|
|
|
];
|
2010-01-16 21:26:10 +00:00
|
|
|
|
2011-07-20 14:24:26 +01:00
|
|
|
enableParallelBuilding = true;
|
2010-01-16 21:26:10 +00:00
|
|
|
|
2016-02-26 17:38:15 +00:00
|
|
|
hardeningDisable = [ "bindnow" "relro" ];
|
2016-02-07 19:18:57 +00:00
|
|
|
|
2016-10-20 14:38:02 +01:00
|
|
|
# Fix pkgconfig file that gets broken with multiple outputs
|
|
|
|
postFixup = ''
|
|
|
|
sed -i $dev/lib/pkgconfig/opencv.pc -e "s|includedir_old=.*|includedir_old=$dev/include/opencv|"
|
|
|
|
sed -i $dev/lib/pkgconfig/opencv.pc -e "s|includedir_new=.*|includedir_new=$dev/include|"
|
|
|
|
'';
|
|
|
|
|
2016-06-07 15:08:20 +01:00
|
|
|
passthru = lib.optionalAttrs enablePython { pythonPath = []; };
|
|
|
|
|
2017-04-20 22:46:11 +01:00
|
|
|
meta = with stdenv.lib; {
|
2010-01-16 21:26:10 +00:00
|
|
|
description = "Open Computer Vision Library with more than 500 algorithms";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://opencv.org/";
|
2017-04-20 22:46:11 +01:00
|
|
|
license = licenses.bsd3;
|
2018-07-22 20:50:19 +01:00
|
|
|
maintainers = with maintainers; [ ];
|
2019-06-06 04:45:27 +01:00
|
|
|
platforms = platforms.linux;
|
2010-01-16 21:26:10 +00:00
|
|
|
};
|
|
|
|
}
|