Skip to content

Commit

Permalink
v4l-utils: use qt5's mkDerivation
Browse files Browse the repository at this point in the history
Fixes

  qt.qpa.plugin: Could not find the Qt platform plugin "xcb" in ""
  This application failed to start because no Qt platform plugin could be initialized. Reinstalling the application may fix this problem.

See NixOS#65399
  • Loading branch information
bjornfor committed Aug 7, 2019
1 parent a26168f commit f6763cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/os-specific/linux/v4l-utils/default.nix
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{ stdenv, lib, fetchurl, pkgconfig, perl
{ stdenv, lib, fetchurl, pkgconfig, perl, mkDerivation
, libjpeg, udev
, withUtils ? true
, withGUI ? true, alsaLib, libX11, qtbase, libGLU
}:

# See libv4l in all-packages.nix for the libs only (overrides alsa, libX11 & QT)

stdenv.mkDerivation rec {
mkDerivation rec {
name = "v4l-utils-${version}";
version = "1.16.6";

Expand Down

0 comments on commit f6763cc

Please sign in to comment.