mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
v4l-utils: use qt5's mkDerivation
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 https://github.com/NixOS/nixpkgs/issues/65399
This commit is contained in:
parent
a26168ff46
commit
f6763cc130
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, lib, fetchurl, pkgconfig, perl
|
||||
{ stdenv, lib, fetchurl, pkgconfig, perl, mkDerivation
|
||||
, libjpeg, udev
|
||||
, withUtils ? true
|
||||
, withGUI ? true, alsaLib, libX11, qtbase, libGLU
|
||||
|
@ -6,7 +6,7 @@
|
|||
|
||||
# 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";
|
||||
|
||||
|
|
Loading…
Reference in a new issue