Merge pull request #86808 from doronbehar/rename-opencv

This commit is contained in:
Jörg Thalheim 2020-05-05 20:19:50 +01:00 committed by GitHub
commit 3c4096f18b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
10 changed files with 21 additions and 19 deletions

@ -2,7 +2,7 @@
, gtk2
, jack2Full
, alsaLib
, opencv
, opencv2
, libsndfile
}:
@ -20,7 +20,7 @@ faust.wrapWithBuildEnv {
gtk2
jack2Full
alsaLib
opencv
opencv2
libsndfile
];

@ -1,6 +1,6 @@
{ faust
, jack2Full
, opencv
, opencv2
, qt4
, libsndfile
, which
@ -17,7 +17,7 @@ faust.wrapWithBuildEnv {
propagatedBuildInputs = [
jack2Full
opencv
opencv2
qt4
libsndfile
which

@ -1,5 +1,5 @@
{ stdenv, fetchurl, gdal, wxGTK30, proj, libiodbc, lzma,
libharu, opencv, vigra, postgresql, Cocoa,
libharu, opencv2, vigra, postgresql, Cocoa,
unixODBC , poppler, hdf4, hdf5, netcdf, sqlite, qhull, giflib }:
stdenv.mkDerivation {
@ -8,7 +8,7 @@ stdenv.mkDerivation {
# See https://groups.google.com/forum/#!topic/nix-devel/h_vSzEJAPXs
# for why the have additional buildInputs on darwin
buildInputs = [ gdal wxGTK30 proj libharu opencv vigra postgresql libiodbc lzma
buildInputs = [ gdal wxGTK30 proj libharu opencv2 vigra postgresql libiodbc lzma
qhull giflib ]
++ stdenv.lib.optionals stdenv.isDarwin
[ Cocoa unixODBC poppler hdf4.out hdf5 netcdf sqlite ];

@ -8,7 +8,7 @@
, gcc
, glib
, ncurses
, opencv
, opencv2
, openssl
, unixODBC
, xorg
@ -49,7 +49,7 @@ stdenv.mkDerivation rec {
gcc.libc
glib
ncurses
opencv
opencv2
openssl
unixODBC
libxml2

@ -10,7 +10,7 @@
, gcc
, glib
, ncurses
, opencv
, opencv2
, openssl
, unixODBC
, xkeyboard_config
@ -46,7 +46,7 @@ stdenv.mkDerivation rec {
gcc.libc
glib
ncurses
opencv
opencv2
openssl
unixODBC
xkeyboard_config

@ -8,7 +8,7 @@
, gcc
, glib
, ncurses
, opencv
, opencv2
, openssl
, unixODBC
, xorg
@ -46,7 +46,7 @@ stdenv.mkDerivation rec {
gcc.libc
glib
ncurses
opencv
opencv2
openssl
unixODBC
] ++ (with xorg; [

@ -11,7 +11,7 @@
, glib
, libssh2
, ncurses
, opencv
, opencv2
, openssl
, unixODBC
, xkeyboard_config
@ -47,7 +47,7 @@ stdenv.mkDerivation rec {
glib
libssh2
ncurses
opencv
opencv2
openssl
stdenv.cc.cc.lib
unixODBC

@ -1,10 +1,10 @@
{ stdenv, pkgconfig, fetchFromGitHub, opencv, ncurses, portaudio }:
{ stdenv, pkgconfig, fetchFromGitHub, opencv2, ncurses, portaudio }:
stdenv.mkDerivation {
name = "p2pvc";
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ opencv ncurses portaudio ];
buildInputs = [ opencv2 ncurses portaudio ];
enableParallelBuilding = true;

@ -1,6 +1,6 @@
{ stdenv, fetchurl, cmake, pkgconfig, darwin
, openexr, zlib, imagemagick, libGLU, libGL, freeglut, fftwFloat
, fftw, gsl, libexif, perl, opencv, qt5, netpbm
, fftw, gsl, libexif, perl, opencv2, qt5, netpbm
}:
stdenv.mkDerivation rec {
@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ cmake pkgconfig ];
buildInputs = [
openexr zlib imagemagick fftwFloat
fftw gsl libexif perl opencv qt5.qtbase netpbm
fftw gsl libexif perl opencv2 qt5.qtbase netpbm
] ++ (if stdenv.isDarwin then (with darwin.apple_sdk.frameworks; [
OpenGL GLUT
]) else [

@ -13806,7 +13806,7 @@ in
openct = callPackage ../development/libraries/openct { };
opencv = callPackage ../development/libraries/opencv {
opencv2 = callPackage ../development/libraries/opencv {
inherit (darwin.apple_sdk.frameworks) Cocoa QTKit;
};
@ -13822,6 +13822,8 @@ in
inherit (darwin.apple_sdk.frameworks) AVFoundation Cocoa VideoDecodeAcceleration;
};
opencv = opencv4;
openexr = callPackage ../development/libraries/openexr { };
openexrid-unstable = callPackage ../development/libraries/openexrid-unstable { };