p2pvc: exlicitly use opencv2

gstqt5
Doron Behar 2020-05-05 13:03:02 +03:00
parent c0137489ef
commit 8277f8a4ec
1 changed files with 2 additions and 2 deletions

View File

@ -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;